From ba8d127a0349362c9f0badde81a10dbd1cfcb80c Mon Sep 17 00:00:00 2001 From: Emile Date: Fri, 30 Aug 2019 14:57:12 +0200 Subject: added the drone file --- .drone.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .drone.yml (limited to '.drone.yml') 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 . -- cgit 1.4.1