.travis.yml 246 B

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