From 57877cbafa1a62d90f1db81796348a09e82f9ff7 Mon Sep 17 00:00:00 2001 From: James Mills Date: Mon, 31 Dec 2018 23:23:50 +1000 Subject: Migrate to Drone CI, Codecov and Go11Modules --- .drone.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .drone.yml (limited to '.drone.yml') diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..0065a03 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,22 @@ +kind: pipeline +name: default + +steps: + - name: build + image: golang:latest + commands: + - make test + + - name: coverage + image: plugins/codecov + settings: + token: + from_secret: codecov-token + + - name: notify + image: plugins/webhook + urls: https://msgbus.mills.io/ci.mills.io + when: + status: + - success + - failure -- cgit v1.2.3-54-g00ecf