.github/workflows: swap order of go test and golangci-lint (#9389)

The linter is secondary to the tests, so it should run after the tests,
exposing test failures faster.
This commit is contained in:
Blake Mizerany 2025-02-26 23:03:48 -08:00 committed by GitHub
parent a5272130c4
commit 76e903cf9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -190,6 +190,20 @@ jobs:
go-version-file: go.mod
# It is tempting to run this in a platform independent way, but the past
# shows this codebase will see introductions of platform specific code
# generation, and so we need to check this per platform to ensure we
# don't abuse go generate on specific platforms.
- name: check that 'go generate' is clean
if: always()
run: |
go generate ./...
git diff --name-only --exit-code || (echo "Please run 'go generate ./...'." && exit 1)
- name: go test
if: always()
run: go test -count=1 -benchtime=1x ./...
# TODO(bmizerany): replace this heavy tool with just the
# tools/checks/binaries we want and then make them all run in parallel
# across jobs, not on a single tiny vm on Github Actions.
@ -197,21 +211,6 @@ jobs:
with:
args: --timeout 10m0s -v
- name: go test
# Do not skip tests in the face of linter errors, or 'go mod tidy'
# checks, which are secondary to the tests. Tests trump linters.
if: always()
run: go test -count=1 -benchtime=1x ./...
# It is tempting to run this in a platform independent way, but the past
# shows this codebase will see introductions of platform specific code
# generation, and so we need to check this per platform to ensure we
# don't abuse go generate on specific platforms.
- name: check that 'go generate' is clean
run: |
go generate ./...
git diff --name-only --exit-code || (echo "Please run 'go generate ./...'." && exit 1)
- name: cache save
# Always save the cache, even if the job fails. The artifacts produced
# during the building of test binaries are not all for naught. They can