Merge pull request #190 from MrDXY/replace-test-errors-with-assert-tr… #589
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go Vulnerability Checker | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22.2" | |
- run: date | |
- run: go install golang.org/x/vuln/cmd/govulncheck@latest && govulncheck ./... |