.travis.yml 289 B

1234567891011121314151617181920
  1. language: go
  2. go:
  3. - "1.3"
  4. - "1.4"
  5. - "1.5"
  6. - "1.6"
  7. - "1.7"
  8. - "1.8"
  9. - "1.9"
  10. - "1.10"
  11. - "1.11"
  12. - "1.12"
  13. script:
  14. - ./validate.sh
  15. # this should give us faster builds according to
  16. # http://docs.travis-ci.com/user/migrating-from-legacy/
  17. sudo: false