Skip to content

Commit f677440

Browse files
committed
fix(git): add vulncheck to catch gaps locally
1 parent acd3917 commit f677440

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

justfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ build:
4545
go build -ldflags="-X main.version={{version}} -X main.commit={{commit}} -X main.date={{date}}" \
4646
-o bin/goku ./cmd/goku
4747

48+
vulncheck:
49+
go run golang.org/x/vuln/cmd/govulncheck@latest ./...
50+
4851
run:
4952
go run ./cmd/goku
5053

@@ -54,4 +57,4 @@ docker:
5457
clean:
5558
rm -rf bin/ coverage.out
5659

57-
ci: lint test build
60+
ci: lint test build vulncheck

0 commit comments

Comments
 (0)