envfilesubst/.drone.yml

16 lines
325 B
YAML
Raw Normal View History

2022-05-16 00:06:05 +00:00
---
kind: pipeline
2023-09-12 19:04:53 +00:00
type: kubernetes
2022-05-16 00:06:05 +00:00
name: default
steps:
2023-09-12 19:04:53 +00:00
- name: build and test
image: golang:1.21
2022-05-16 00:06:05 +00:00
commands:
2023-09-12 19:04:53 +00:00
- go env -w GOFLAGS="-buildvcs=false"
2022-05-16 00:06:05 +00:00
- go install honnef.co/go/tools/cmd/staticcheck@latest
- go build ./...
- go vet ./...
- staticcheck ./...
- go test -bench=. -benchmem -cover ./...