feat: speed up release by prioritizing linux/amd64 #5393
This file contains hidden or 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: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| unit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: "1.23.1" | |
| - name: install dependencies | |
| run: go mod tidy | |
| - name: run unit tests | |
| run: make test | |
| - name: Send coverage to coveralls | |
| uses: shogo82148/actions-goveralls@v1 | |
| continue-on-error: true | |
| with: | |
| path-to-profile: coverage.out | |
| smoke: | |
| runs-on: ubuntu-latest | |
| services: | |
| dind: | |
| image: docker:24.0.2-dind-rootless | |
| ports: | |
| - 2375:2375 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: "1.23.1" | |
| - name: install dependencies | |
| run: go mod tidy | |
| - name: install spicedb binary | |
| uses: authzed/action-spicedb@v1 | |
| - name: run smoke tests | |
| run: make e2e-smoke-test | |
| regression: | |
| runs-on: ubuntu-latest | |
| services: | |
| dind: | |
| image: docker:24.0.2-dind-rootless | |
| ports: | |
| - 2375:2375 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: "1.23.1" | |
| - name: install dependencies | |
| run: go mod tidy | |
| - name: run regression tests | |
| run: make e2e-regression-test |