.travis.yml 731 B

1234567891011121314151617181920212223242526272829
  1. language: go
  2. go:
  3. - 1.6.x
  4. - 1.7.x
  5. - 1.8.x
  6. - 1.9.x
  7. - 1.10.x
  8. - 1.11.x
  9. - 1.12.x
  10. - tip
  11. # Setting sudo access to false will let Travis CI use containers rather than
  12. # VMs to run the tests. For more details see:
  13. # - http://docs.travis-ci.com/user/workers/container-based-infrastructure/
  14. # - http://docs.travis-ci.com/user/workers/standard-infrastructure/
  15. sudo: false
  16. script:
  17. - make setup
  18. - make test
  19. notifications:
  20. webhooks:
  21. urls:
  22. - https://webhooks.gitter.im/e/06e3328629952dabe3e0
  23. on_success: change # options: [always|never|change] default: always
  24. on_failure: always # options: [always|never|change] default: always
  25. on_start: never # options: [always|never|change] default: always