mirror of https://github.com/mindoc-org/mindoc.git
22 lines
280 B
YAML
22 lines
280 B
YAML
|
version: "{build}"
|
||
|
|
||
|
platform:
|
||
|
- x86
|
||
|
- x64
|
||
|
|
||
|
clone_folder: c:\gopath\src\github.com\kardianos\service
|
||
|
|
||
|
environment:
|
||
|
GOPATH: c:\gopath
|
||
|
|
||
|
install:
|
||
|
- go version
|
||
|
- go env
|
||
|
- go get -v -t ./...
|
||
|
|
||
|
build_script:
|
||
|
- go install -v ./...
|
||
|
|
||
|
test_script:
|
||
|
- go test -v -tags su ./...
|