mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-04 16:09:33 +00:00
6828057f66
* update pipeline samples * update docs * use woodpeckerci/plugin-git:latest as default * code format nit
16 lines
241 B
YAML
16 lines
241 B
YAML
workspace:
|
|
base: /go
|
|
path: src/github.com/drone/envsubst
|
|
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
depth: 50
|
|
|
|
pipeline:
|
|
build:
|
|
image: golang:1.7
|
|
commands:
|
|
- go get -t ./...
|
|
- go build
|
|
- go test -v
|