From 03212ce70c83d09b65a55f9e8bcdafc86067a0e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=AEittaG=20ordnasselA?= Date: Tue, 18 Jun 2019 10:59:58 +0200 Subject: [PATCH] Add .drone.yml --- .drone.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..cf50c45 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,11 @@ +kind: pipeline +name: default + +steps: + - name: test + image: golang:alpine + commands: + - go test -v ./... + volumes: + - name: gopath + path: /go