grafana-backuper/.drone.yml
Tom Neuber 2d08f75545
All checks were successful
continuous-integration/drone/push Build is passing
add grafana package & temporary debug checks
2024-02-15 10:56:18 +01:00

20 lines
304 B
YAML

kind: pipeline
name: build
steps:
- name: gofmt
image: golang:1.21.5
commands:
- gofmt -l -s .
when:
event:
- push
- name: vuln-check
image: golang:1.21.5
commands:
- go install golang.org/x/vuln/cmd/govulncheck@latest
- govulncheck ./...
when:
event:
- push