.travis.yml 348 B

12345678910111213141516171819202122232425
  1. language: go
  2. sudo: false
  3. go:
  4. - 1.10.x
  5. - 1.11.x
  6. - 1.12.x
  7. - 1.13.x
  8. - master
  9. git:
  10. depth: 10
  11. matrix:
  12. fast_finish: true
  13. include:
  14. - go: 1.11.x
  15. env: GO111MODULE=on
  16. - go: 1.12.x
  17. env: GO111MODULE=on
  18. script:
  19. - go test -v -covermode=count -coverprofile=coverage.out
  20. after_success:
  21. - bash <(curl -s https://codecov.io/bash)