.travis.yml 315 B

123456789101112131415161718192021
  1. language: go
  2. go:
  3. - 1.2
  4. - 1.3
  5. - 1.4
  6. - 1.5
  7. - 1.6
  8. - 1.7
  9. - tip
  10. before_install:
  11. if [[ $TRAVIS_GO_VERSION == 1.7* ]]; then make deps; fi
  12. script:
  13. - if [[ $TRAVIS_GO_VERSION == 1.7* ]]; then make gometalinter; fi
  14. - make test
  15. - make cover
  16. after_success:
  17. - bash <(curl -s https://codecov.io/bash)