http urls monitor.

.travis.yml 391B

1234567891011121314151617181920212223242526
  1. language: go
  2. sudo: false
  3. go:
  4. - 1.6.x
  5. - 1.7.x
  6. - 1.8.x
  7. - 1.9.x
  8. - 1.10.x
  9. - 1.11.x
  10. - tip
  11. script:
  12. - go test -v -covermode=atomic -coverprofile=coverage.out
  13. after_success:
  14. - bash <(curl -s https://codecov.io/bash)
  15. notifications:
  16. webhooks:
  17. urls:
  18. - https://webhooks.gitter.im/e/acc2c57482e94b44f557
  19. on_success: change
  20. on_failure: always
  21. on_start: false