Compare commits

...

1 Commits

Author SHA1 Message Date
Antoine Bartuccio cff9f998d0 Fix CI for go 1.11
the build failed Details
2019-01-04 11:23:55 +01:00
1 changed files with 4 additions and 2 deletions

View File

@ -1,16 +1,18 @@
pipeline:
build:
image: golang
image: golang:1.11
group: build
commands:
- export GOPATH=/drone
- go get -v -d ./...
- go build .
test:
image: golang
image: golang:1.11
group: build
secrets: [ test_api_token ]
environment: [ test_api_token ]
commands:
- export GOPATH=/drone
- go get -v -d ./...
- go test ./...
publish: