You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.appveyor.yml 335B

123456789101112131415161718192021222324252627
  1. version: 1.0.0.{build}
  2. platform: x64
  3. branches:
  4. only:
  5. - master
  6. clone_folder: c:\gopath\src\github.com\rs\xid
  7. environment:
  8. GOPATH: c:\gopath
  9. install:
  10. - echo %PATH%
  11. - echo %GOPATH%
  12. - set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
  13. - go version
  14. - go env
  15. - go get -t .
  16. build_script:
  17. - go build
  18. test_script:
  19. - go test