util/.drone.yml

12 lines
229 B
YAML
Raw Normal View History

2023-03-07 16:00:39 +00:00
kind: pipeline
type: docker
2023-03-08 08:57:02 +00:00
name: go-lib/util
2023-03-07 16:00:39 +00:00
steps:
- name: test
image: golang:1.18
commands:
2023-03-08 08:57:02 +00:00
- go get ./...
- go test ./...
- go install golang.org/x/vuln/cmd/govulncheck@latest
2023-03-08 19:31:51 +00:00
- govulncheck -v -json ./...