This repository has been archived on 2020-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
macaron/.drone.yml
techknowlogick 26931529e8
All checks were successful
continuous-integration/drone/push Build is passing
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