mirror of
https://github.com/thegeeklab/drone-template-lib.git
synced 2024-11-16 09:50:39 +00:00
19 lines
320 B
YAML
19 lines
320 B
YAML
|
workspace:
|
||
|
base: /go
|
||
|
path: src/github.com/drone/drone-template-lib
|
||
|
|
||
|
pipeline:
|
||
|
deps:
|
||
|
image: golang:1.10
|
||
|
pull: true
|
||
|
commands:
|
||
|
- go get -u github.com/golang/dep/cmd/dep
|
||
|
- dep ensure
|
||
|
|
||
|
test:
|
||
|
image: golang:1.10
|
||
|
pull: true
|
||
|
commands:
|
||
|
- go vet ./...
|
||
|
- go test -cover ./...
|