drone-with-go/.drone.yml

15 lines
236 B
YAML
Raw Permalink Normal View History

2018-06-13 22:36:28 +02:00
workspace:
base: /go
path: src/github.com/drone-demos/drone-with-go
2018-06-13 22:34:33 +02:00
pipeline:
2018-06-13 22:36:28 +02:00
test:
image: golang:latest
2018-06-13 22:34:33 +02:00
commands:
- go vet
- go test -v -cover
2018-06-13 22:36:28 +02:00
build:
image: golang:latest
commands:
- go build