diff --git a/.gitea/scoped_workflows/static-go.yaml b/.gitea/scoped_workflows/static-go.yaml index f4ae1e1..6f61c78 100644 --- a/.gitea/scoped_workflows/static-go.yaml +++ b/.gitea/scoped_workflows/static-go.yaml @@ -34,17 +34,17 @@ jobs: GOTOOLCHAIN=local go install honnef.co/go/tools/cmd/staticcheck@latest GOTOOLCHAIN=local go install golang.org/x/vuln/cmd/govulncheck@latest - - name: Run Go Vet + - name: Run go vet id: static-go-vet if: always() run: go vet ./... - - name: Run Go Staticcheck + - name: Run staticcheck id: static-go-staticcheck if: always() run: staticcheck ./... - - name: Run Go Vuln Check + - name: Run govulncheck id: static-go-govulncheck if: always() run: govulncheck ./...