macaron/.drone.yml
techknowlogick 26931529e8 update to 1.13, and add GOPROXY env var (#12)
update to 1.13, and add GOPROXY env var

Reviewed-by: John Olheiser <john.olheiser@gmail.com>
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
2020-01-05 03:07:58 +00:00

13 lines
226 B
YAML

kind: pipeline
name: default
steps:
- name: test
image: golang:1.13
environment:
GOPROXY: https://goproxy.cn
commands:
- go get -u
- go build -v
- go test -v -race -coverprofile=coverage.txt -covermode=atomic