diff options
-rw-r--r-- | .drone.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..13501f2 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,23 @@ + +kind: pipeline +name: default + +platform: + os: linux + arch: amd64 + +steps: +- name: test + image: golang:latest + commands: + - go test -v . + +- name: benchmark + image: golang:latest + commands: + - go test -bench . + +- name: vet + image: golang:latest + commands: + - go vet . |