gitea_log/.drone.yml
2019-05-25 05:40:34 +00:00

14 lines
239 B
YAML

kind: pipeline
name: default
steps:
- name: test
image: golang:1.10
commands:
- go get -t -d -v ./...
- go build -v
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
when:
event:
- pull_request
- push