From cb64d56c3fb7ff68d545dbc317f9faf2c3355625 Mon Sep 17 00:00:00 2001 From: klmp200 Date: Mon, 23 Jul 2018 19:26:46 +0200 Subject: [PATCH] Parrallel testing --- .drone.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.drone.yml b/.drone.yml index 7214ce2..9ba4933 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,14 +1,17 @@ pipeline: build: image: golang + group: build commands: - go get -v -d ./... - go build . test: image: golang + group: build secrets: [ test_api_token ] environment: [ test_api_token ] commands: + - go get -v -d ./... - go test ./... publish: image: plugins/docker