.travis.yml 371 B

123456789101112131415161718192021
  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. matrix:
  12. allow_failures:
  13. - go: tip
  14. fast_finish: true
  15. before_install:
  16. - go get github.com/mattn/goveralls
  17. - go get golang.org/x/tools/cmd/cover
  18. script:
  19. - $HOME/gopath/bin/goveralls -service=travis-ci
  20. notifications:
  21. email: false