log/.drone.yml
Andrew Thornton f0bbd27a2a
Placate the CCP
Signed-off-by: Andrew Thornton <art27@cantab.net>
2020-04-08 09:01:14 +01:00

17 lines
372 B
YAML

kind: pipeline
name: default
steps:
- name: test
image: golang:1.13
commands:
- go get -t -d -v ./...
- go build -v
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
environment:
GOPROXY: https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
GOSUMDB: sum.golang.org
when:
event:
- pull_request
- push