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)
18 lines
299 B
YAML
18 lines
299 B
YAML
platform: windows/amd64
|
|
|
|
workspace:
|
|
base: c:\gopath
|
|
path: src\github.com\drone\envsubst
|
|
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git:windows
|
|
depth: 50
|
|
|
|
steps:
|
|
build:
|
|
image: golang:1.10.1-nanoserver-sac2016
|
|
commands:
|
|
- go get -t .\...
|
|
- go build
|
|
- go test -v
|