diff options
author | Emile <hanemile@protonmail.com> | 2019-08-30 14:57:12 +0200 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-08-30 14:57:12 +0200 |
commit | ba8d127a0349362c9f0badde81a10dbd1cfcb80c (patch) | |
tree | cbdee5dccc88a44bbd70c3c13efd5d0e8fc32638 | |
parent | 26de707af673c99eafbe00584f1ac5a29757f6d3 (diff) |
added the drone file
-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 . |