From 971710df84a359669f18efe976de98e552e208d0 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Mon, 7 Oct 2019 15:02:13 -0700 Subject: [PATCH] Add a build step to drone pipeline --- .drone.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.drone.yml b/.drone.yml index bc2d587..389e139 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,6 +2,11 @@ kind: pipeline name: test steps: + - name: build + image: golang:1.12 + commands: + - make build + - name: test image: golang:1.12 commands: