We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 207352a commit bbb0d5dCopy full SHA for bbb0d5d
Makefile
@@ -50,12 +50,14 @@ package:
50
51
install-tools:
52
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
53
- go install honnef.co/go/tools/cmd/staticcheck@2023.1
+ go install honnef.co/go/tools/cmd/staticcheck@latest
54
go install github.com/securego/gosec/v2/cmd/gosec@latest
55
go install github.com/google/addlicense@latest
56
57
58
-lint: install-tools
+lint:
59
+ # Please make sure you are using the latest go version before executing lint
60
+ @go version
61
go vet ./...
62
golangci-lint run ./...
63
staticcheck ./...
0 commit comments