Rob Watson 61c6af9476
All checks were successful
continuous-integration/drone/push Build is passing
Update Go to 1.19
2022-08-05 19:54:22 +02:00

15 lines
260 B
YAML

---
kind: pipeline
type: kubernetes
name: default
steps:
- name: test
image: golang:1.19
commands:
- go install honnef.co/go/tools/cmd/staticcheck@latest
- go build ./...
- go vet ./...
- staticcheck ./...
- go test -cover -race ./...