add grafana package & temporary debug checks
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tom Neuber 2024-02-15 01:12:57 +01:00
parent 1247fc3fcb
commit 2d08f75545
Signed by: tom
GPG key ID: F17EFE4272D89FF6
9 changed files with 373 additions and 0 deletions

19
.drone.yml Normal file
View file

@ -0,0 +1,19 @@
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