.travis.yml 214 B

12345678910111213141516171819202122
  1. sudo: false
  2. language: go
  3. go:
  4. - 1.5.4
  5. - 1.6.3
  6. - 1.7
  7. - tip
  8. os:
  9. - linux
  10. - osx
  11. matrix:
  12. allow_failures:
  13. - go: tip
  14. fast_finish: true
  15. script:
  16. - go test -v ./...
  17. - go build