.travis.yml 322 B

123456789101112131415161718192021222324
  1. sudo: required
  2. os:
  3. - osx
  4. - linux
  5. - windows
  6. language: go
  7. go:
  8. - "1.11.1"
  9. go_import_path: v2ray.com/core
  10. git:
  11. depth: 5
  12. before_script:
  13. - uname -a
  14. - date
  15. script:
  16. - go test -p 1 -tags json -v v2ray.com/core/...
  17. after_success:
  18. - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./testing/coverage/coverall; fi