From fad0e00acf43c7747fd491e30e302406e88811f1 Mon Sep 17 00:00:00 2001 From: Peter Stuifzand Date: Mon, 11 Mar 2019 20:32:46 +0100 Subject: [PATCH] Add .drone.yml --- .drone.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..a41f72d --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +name: testing + +clone: + depth: 50 + +steps: + - name: testing + image: golang:1.11 + pull: true + commands: + - go test -v . + - go vet