.travis.yml 359 B

12345678910111213141516171819202122
  1. language: go
  2. sudo: false
  3. go:
  4. - 1.5.4
  5. - 1.6.3
  6. - 1.7.3
  7. - tip
  8. script:
  9. - go test -v -covermode=atomic -coverprofile=coverage.out
  10. after_success:
  11. - bash <(curl -s https://codecov.io/bash)
  12. notifications:
  13. webhooks:
  14. urls:
  15. - https://webhooks.gitter.im/e/acc2c57482e94b44f557
  16. on_success: change
  17. on_failure: always
  18. on_start: false