diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..4be1eaa --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +--- +kind: pipeline +type: kubernetes +name: default + +steps: +- name: test + image: golang:1.18 + commands: + - go install honnef.co/go/tools/cmd/staticcheck@latest + - go build ./... + - go vet ./... + - staticcheck ./... + - go test -bench=. -benchmem -cover ./...