mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 00:11:16 +00:00
7e708874ae
Adjust pipeline-config to match [Terminology](https://woodpecker-ci.org/docs/next/usage/terminology)
16 lines
238 B
YAML
16 lines
238 B
YAML
workspace:
|
|
base: /go
|
|
path: src/github.com/drone/envsubst
|
|
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
depth: 50
|
|
|
|
steps:
|
|
build:
|
|
image: golang:1.7
|
|
commands:
|
|
- go get -t ./...
|
|
- go build
|
|
- go test -v
|