.travis.yml 207 B

123456789101112131415
  1. language: go
  2. go:
  3. - 1.9.x
  4. - 1.10.x
  5. - 1.11.x
  6. - tip
  7. install:
  8. - make dependency
  9. script:
  10. - make test
  11. after_success:
  12. - bash <(curl -s https://codecov.io/bash)
  13. matrix:
  14. allow_failures:
  15. - go: tip