appveyor.yml 372 B

1234567891011121314151617181920212223242526
  1. version: build-{build}.{branch}
  2. clone_folder: C:\gopath\src\github.com\Masterminds\sprig
  3. shallow_clone: true
  4. environment:
  5. GOPATH: C:\gopath
  6. platform:
  7. - x64
  8. install:
  9. - go get -u github.com/Masterminds/glide
  10. - set PATH=%GOPATH%\bin;%PATH%
  11. - go version
  12. - go env
  13. build_script:
  14. - glide install
  15. - go install ./...
  16. test_script:
  17. - go test -v
  18. deploy: off