.travis.yml 317 B

12345678910111213141516171819202122
  1. language: go
  2. sudo: false
  3. go:
  4. - 1.11.x
  5. - 1.12.x
  6. go_import_path: go.uber.org/zap
  7. env:
  8. global:
  9. - TEST_TIMEOUT_SCALE=10
  10. cache:
  11. directories:
  12. - vendor
  13. install:
  14. - make dependencies
  15. script:
  16. - make lint
  17. - make test
  18. - make bench
  19. after_success:
  20. - make cover
  21. - bash <(curl -s https://codecov.io/bash)