We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1a36b48 + 60f1400 commit acb0926Copy full SHA for acb0926
Makefile
@@ -563,3 +563,10 @@ fix: sync-toolchain-directive
563
.PHONY: sync-toolchain-directive
564
sync-toolchain-directive:
565
./scripts/sync_go_toolchain_directive.sh
566
+
567
+.PHONY: run-govulncheck
568
+run-govulncheck:
569
+ifeq (, $(shell which govulncheck))
570
+ $(shell go install golang.org/x/vuln/cmd/govulncheck@latest)
571
+endif
572
+ PASSES="govuln" ./test
test
@@ -451,6 +451,10 @@ function markdown_marker_pass {
451
fi
452
}
453
454
+function govuln_pass {
455
+ govulncheck -show verbose ./...
456
+}
457
458
function goword_pass {
459
if command -v goword >/dev/null; then
460
# get all go files to process
0 commit comments