Remove obsolete "errors" step from lint job on CI

When this was added (dafac52a4c), the job used
golangci-lint-action@v2, which had the problem that its step log was
sparse (it mostly produced PR annotations), so re-running `golanci-lint
run` was a workaround to dump readable errors into the console. The
current version of the action no longer has this problem, so we can
remove that fallback (it would conflict with what we are about to do in
this branch).
This commit is contained in:
Stefan Haller
2026-07-02 10:41:00 +02:00
parent 73aec42189
commit 21ae632c9b
-3
View File
@@ -172,9 +172,6 @@ jobs:
with:
# If you change this, make sure to also update scripts/golangci-lint-shim.sh
version: v2.4.0
- name: errors
run: golangci-lint run
if: ${{ failure() }}
upload-coverage:
# List all jobs that produce coverage files
needs: [unit-tests, integration-tests]