log/.drone.yml

14 lines
239 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
when:
event:
- pull_request
- push