Compare commits

..

No commits in common. "main" and "v0.5.0" have entirely different histories.
main ... v0.5.0

1 changed files with 4 additions and 12 deletions

View File

@ -3,18 +3,10 @@ type: docker
name: go-lib/util name: go-lib/util
steps: steps:
- name: build - name: test
image: golang image: golang:1.18
commands: commands:
- mkdir -p .build
- go install gotest.tools/gotestsum@v1.9.0
- go get ./... - go get ./...
- gotestsum --format testname --junitfile .build/unittests.xml -- -coverprofile=.build/coverage.txt ./... - go test ./...
- go install golang.org/x/vuln/cmd/govulncheck@latest - go install golang.org/x/vuln/cmd/govulncheck@latest
- govulncheck -v ./... - govulncheck -v -json ./... > vulncheck.json
trigger:
event:
- push
- cron
- custom