From 93581c0130f503f229a1827fca7e155de2a3bef6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Carlos=20Mej=C3=ADas=20Rodr=C3=ADguez?= Date: Tue, 13 Aug 2019 11:00:33 -0400 Subject: [PATCH] Add Drone CI config file --- .drone.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..8e577cf --- /dev/null +++ b/.drone.yml @@ -0,0 +1,20 @@ +kind: pipeline +name: default + +steps: + - name: fetch + image: docker:git + commands: + - git fetch --tags + + - name: test + image: golang + volumes: + - name: deps + path: /go + commands: + - go test -cover -v ./... + +volumes: + - name: deps + temp: {}