From cf1fa4475f5a995d9f0b330d28a382eba03d216e Mon Sep 17 00:00:00 2001 From: josebarn Date: Sun, 13 Aug 2017 09:43:55 -0300 Subject: [PATCH] trying again --- .drone.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.drone.yml b/.drone.yml index 85a3386..5415c42 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,13 +1,12 @@ pipeline: build: - image: golang:1.5 - environment: - - GO15VENDOREXPERIMENT=1 - - CGO_ENABLED=0 + image: ${IMAGE} commands: - - go test -cover -coverprofile coverage.out + - go build + - go test - publish: - coverage: - when: - branch: master +matrix: + IMAGE: + - golang:1.7 + - golang:1.8 + - golang:latest