mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
15 lines
412 B
YAML
15 lines
412 B
YAML
workspace:
|
|
base: /go
|
|
path: src/github.com/laszlocph/woodpecker/cncd/pipeline
|
|
|
|
pipeline:
|
|
install:
|
|
image: golang:1.8
|
|
commands:
|
|
- go install github.com/laszlocph/woodpecker/cncd/pipeline/pipec
|
|
- go install github.com/laszlocph/woodpecker/cncd/pipeline/piped
|
|
|
|
test:
|
|
image: golang:1.8
|
|
commands:
|
|
- go test -cover -timeout 30s github.com/laszlocph/woodpecker/cncd/pipeline/...
|