mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-01 12:12:22 +00:00
17 lines
229 B
YAML
17 lines
229 B
YAML
|
workspace:
|
||
|
base: /go
|
||
|
path: src/github.com/drone/envsubst
|
||
|
|
||
|
clone:
|
||
|
git:
|
||
|
image: plugins/git
|
||
|
depth: 50
|
||
|
|
||
|
pipeline:
|
||
|
build:
|
||
|
image: golang:1.7
|
||
|
commands:
|
||
|
- go get -t ./...
|
||
|
- go build
|
||
|
- go test -v
|