Skip to content

Commit

Permalink
fix(ci): move 'go vet' to linting
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed Jun 24, 2024
1 parent 7d0c752 commit bf07e9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ format-go:
.PHONY: lint-go
lint-go:
cd tests/go && \
golangci-lint run --verbose ./...
golangci-lint run --verbose ./... && \
go vet ./...

.PHONY: vuln-go
vuln-go:
cd tests/go && \
govulncheck ./... && \
go vet ./... && \
gosec ./...

.PHONY: git-diff
Expand Down

0 comments on commit bf07e9f

Please sign in to comment.