.travis.yml 312 B

1234567891011121314151617181920212223
  1. language: go
  2. sudo: false
  3. go:
  4. - 1.4
  5. - 1.5
  6. - 1.6
  7. - tip
  8. # Use Go 1.5's vendoring experiment for 1.5 tests. 1.4 tests will use the tip of the dependencies repo.
  9. env:
  10. - GO15VENDOREXPERIMENT=1
  11. install:
  12. - make get-deps
  13. script:
  14. - make unit-with-race-cover
  15. matrix:
  16. allow_failures:
  17. - go: tip