drone-with-go/.drone.yml
surtur b9526f410a
All checks were successful
continuous-integration/drone/push Build is passing
revert (didn't go too well)
2020-02-27 22:02:13 +01: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