certs/.drone.yml

13 lines
227 B
YAML
Raw Normal View History

2023-03-08 09:41:15 +00:00
kind: pipeline
type: docker
name: go-lib/certs
steps:
- name: test
2023-03-08 19:40:46 +00:00
image: golang:1.20.1
2023-03-08 09:41:15 +00:00
commands:
- go get ./...
- go test ./...
- go install golang.org/x/vuln/cmd/govulncheck@latest
2023-03-08 19:40:46 +00:00
- govulncheck -v ./...