.travis.yml 334 B

12345678910111213141516171819202122232425262728
  1. language: go
  2. sudo: false
  3. go:
  4. # - 1.3
  5. # - 1.4
  6. # - 1.5
  7. # - 1.6
  8. # - 1.7
  9. # - 1.8.x
  10. # - 1.9.x
  11. - 1.10.x
  12. - 1.11.x
  13. - tip
  14. install:
  15. - go get -v -t ./...
  16. script:
  17. - go test ./... -coverprofile=coverage.txt -covermode=atomic
  18. after_success:
  19. - bash <(curl -s https://codecov.io/bash)
  20. matrix:
  21. allow_failures:
  22. - go: tip