.travis.yml 494 B

12345678910111213141516171819202122232425262728293031
  1. language: go
  2. sudo: false
  3. go:
  4. - 1.10.x
  5. - 1.11.x
  6. - 1.12.x
  7. - 1.13.x
  8. - master
  9. matrix:
  10. fast_finish: true
  11. include:
  12. - go: 1.11.x
  13. env: GO111MODULE=on
  14. - go: 1.12.x
  15. env: GO111MODULE=on
  16. script:
  17. - go test -v -covermode=atomic -coverprofile=coverage.out
  18. after_success:
  19. - bash <(curl -s https://codecov.io/bash)
  20. notifications:
  21. webhooks:
  22. urls:
  23. - https://webhooks.gitter.im/e/acc2c57482e94b44f557
  24. on_success: change
  25. on_failure: always
  26. on_start: false