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