drone-with-go-test/.drone.yml

15 lines
236 B
YAML
Raw Normal View History

2018-09-15 00:27:38 +02:00
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