.travis.yml 567 B

12345678910111213141516171819202122232425262728
  1. language: go
  2. sudo: false
  3. go:
  4. - 1.6.x
  5. - 1.7.x
  6. - 1.8.x
  7. - tip
  8. git:
  9. depth: 3
  10. install:
  11. - go get -v github.com/kardianos/govendor
  12. - govendor sync
  13. script:
  14. - go test -v -covermode=count -coverprofile=coverage.out
  15. after_success:
  16. - bash <(curl -s https://codecov.io/bash)
  17. notifications:
  18. webhooks:
  19. urls:
  20. - https://webhooks.gitter.im/e/7f95bf605c4d356372f4
  21. on_success: change # options: [always|never|change] default: always
  22. on_failure: always # options: [always|never|change] default: always
  23. on_start: false # default: false