mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-17 17:45:03 +02:00
16 lines
399 B
YAML
16 lines
399 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 github.com/laszlocph/woodpecker/cncd/pipeline/...
|