.travis.yml 328 B

1234567891011121314151617181920212223
  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. - "1.13"
  14. - "1.14"
  15. - "1.15"
  16. script:
  17. - ./validate.sh
  18. # this should give us faster builds according to
  19. # http://docs.travis-ci.com/user/migrating-from-legacy/
  20. sudo: false