mirror of
https://github.com/go-task/task.git
synced 2024-12-16 10:59:23 +02:00
22 lines
413 B
YAML
22 lines
413 B
YAML
version: "{build}"
|
|
|
|
clone_folder: c:\gopath\src\mvdan.cc\sh
|
|
|
|
environment:
|
|
GOPATH: c:\gopath
|
|
GOVERSION: 1.9.2
|
|
|
|
install:
|
|
- rmdir c:\go /s /q
|
|
- appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.msi
|
|
- msiexec /i go%GOVERSION%.windows-amd64.msi /q
|
|
- go version
|
|
|
|
build: false
|
|
deploy: false
|
|
|
|
test_script:
|
|
- go get -d -t ./...
|
|
- go install -v ./...
|
|
- go test ./...
|