AUT-270: implement new deployment workflow for autograph (#333) #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
# Restrict tests to the most recent commit. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit-tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Run unit tests | |
shell: bash | |
run: make test | |
integration-tests: | |
name: Integration Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Generate version.json | |
shell: bash | |
run: ./version.sh | tee version.json | |
- name: Pull autograph image | |
shell: bash | |
run: docker pull mozilla/autograph | |
- name: Build autograph-edge | |
shell: bash | |
run: docker compose build | |
- name: Sign test APKs and XPIs and verify the APK | |
shell: bash | |
run: docker compose run test |