mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-04 22:58:43 +00:00
19 lines
290 B
YAML
19 lines
290 B
YAML
|
platform: windows/amd64
|
||
|
|
||
|
workspace:
|
||
|
base: c:\gopath
|
||
|
path: src\github.com\drone\envsubst
|
||
|
|
||
|
clone:
|
||
|
git:
|
||
|
image: plugins/git:windows
|
||
|
depth: 50
|
||
|
|
||
|
pipeline:
|
||
|
build:
|
||
|
image: golang:1.10.1-nanoserver-sac2016
|
||
|
commands:
|
||
|
- go get -t .\...
|
||
|
- go build
|
||
|
- go test -v
|