Upgrade to go 1.11 and normalize code to go standards #18

Merged
klmp200 merged 3 commits from normalization into master 2019-01-04 10:33:24 +00:00
1 changed files with 5 additions and 3 deletions
Showing only changes of commit cc31b9d00a - Show all commits

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
group: build
image: golang:1.11
group: test
secrets: [ test_api_token ]
environment: [ test_api_token ]
commands:
- export GOPATH=/drone
- go get -v -d ./...
- go test ./...
publish: