We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adc9989 commit fd75088Copy full SHA for fd75088
1 file changed
.github/workflows/build.yml
@@ -27,6 +27,12 @@ jobs:
27
curl -L https://github.com/gotestyourself/gotestsum/releases/download/v${GOTESTSUM_VERSION}/gotestsum_${GOTESTSUM_VERSION}_linux_amd64.tar.gz | sudo tar -C /usr/local/bin -xz
28
gotestsum --format short-verbose --no-summary=skipped ./...
29
30
+ - name: check vulnerabilities
31
+ run: |
32
+ set -o pipefail
33
+ go install golang.org/x/vuln/cmd/govulncheck@latest
34
+ govulncheck ./...
35
+
36
- name: build
37
uses: goreleaser/goreleaser-action@v6
38
with:
0 commit comments