.travis.yml 337 B

1234567891011121314151617181920212223242526272829
  1. sudo: false
  2. language: go
  3. go_import_path: go.uber.org/multierr
  4. env:
  5. global:
  6. - GO15VENDOREXPERIMENT=1
  7. - GO111MODULE=on
  8. go:
  9. - 1.11.x
  10. - 1.12.x
  11. - 1.13.x
  12. cache:
  13. directories:
  14. - vendor
  15. before_install:
  16. - go version
  17. script:
  18. - |
  19. set -e
  20. make lint
  21. make cover
  22. after_success:
  23. - bash <(curl -s https://codecov.io/bash)