Add backend prefix registry #84
Workflow file for this run
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: QA | |
| on: | |
| pull_request: | |
| jobs: | |
| qa: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| # Finer cache key than go.mod alone; restores module + build cache (see setup-go README). | |
| cache-dependency-path: go.sum | |
| - name: Quality checks | |
| run: make quality-checks | |
| # Conformance/parity suites live under ./internal/testkit/conformance/... and run here (no duplicate step). | |
| - name: Unit tests | |
| run: go test -parallel=8 -tags=precommit,integration ./... | |
| - name: Release gates (fuzz smoke) | |
| env: | |
| # ~30 targets × FUZZTIME; keep within job timeout alongside race + lint. | |
| FUZZTIME: 6s | |
| run: make test-fuzz | |
| - name: Race detector | |
| run: bash scripts/race-check.sh --strict | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.11.4 | |
| args: --timeout=10m | |
| - name: govulncheck | |
| run: go tool govulncheck ./... |