diff --git a/build/ci/drone.yml b/build/ci/drone.yml new file mode 100644 index 0000000..32e778e --- /dev/null +++ b/build/ci/drone.yml @@ -0,0 +1,14 @@ +--- +kind: pipeline +name: testing + +steps: +- name: vet + image: golang:1.13 + commands: + - go vet ./... + +- name: test + image: golang:1.13 + commands: + - go test -v ./...