.travis.yml 216 B

123456789101112131415
  1. language: go
  2. go:
  3. - 1.9.x
  4. - 1.x
  5. before_install:
  6. - go get -t -v ./...
  7. - go get -t -v github.com/modern-go/reflect2-tests/...
  8. script:
  9. - ./test.sh
  10. after_success:
  11. - bash <(curl -s https://codecov.io/bash)