Fix go vet and staticcheck not performing any work in CI.

This commit is contained in:
miyuko
2025-12-22 16:10:54 +00:00
parent c5df116673
commit 121f557048

View File

@@ -30,11 +30,11 @@ jobs:
go build
- name: Run tests
run: |
go test ./src
go test ./...
- name: Run static analysis
run: |
go vet
staticcheck
go vet ./...
staticcheck ./...
release:
# IMPORTANT: This workflow step will not work without the Releases unit enabled!