drone-with-go/.drone.yml
2018-06-13 13:36:28 -07:00

15 lines
236 B
YAML

workspace:
base: /go
path: src/github.com/drone-demos/drone-with-go
pipeline:
test:
image: golang:latest
commands:
- go vet
- go test -v -cover
build:
image: golang:latest
commands:
- go build