netflux-homepage/.drone.yml

15 lines
276 B
YAML
Raw Normal View History

2022-06-06 16:48:53 +00:00
---
kind: pipeline
type: kubernetes
name: default
steps:
- name: backend
image: golang:1.18
commands:
- go install honnef.co/go/tools/cmd/staticcheck@latest
- go build ./...
- go vet ./...
- staticcheck ./...
- go test -bench=. -benchmem -cover ./...