We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88c23de commit e9b2781Copy full SHA for e9b2781
Makefile
@@ -25,7 +25,9 @@ install-test-deps:
25
$(GO_NOMOD) get -u github.com/lib/pq
26
27
install-govulncheck:
28
- go install golang.org/x/vuln/cmd/govulncheck@latest
+ @if [ $(GO_MINOR_VERSION) -gt $(GOVULN_MIN_VERSION) ]; then \
29
+ go install golang.org/x/vuln/cmd/govulncheck@latest; \
30
+ fi
31
32
test: install-test-deps build fmt lint sec govulncheck
33
$(GINKGO) -v --fail-fast
0 commit comments