.travis.yml 334 B

12345678910111213
  1. language: go
  2. sudo: false
  3. go:
  4. - 1.7.x # go testing suite support, which we use, was introduced in go 1.7
  5. - 1.8.x
  6. - 1.9.x
  7. - 1.10.x
  8. - 1.11.x
  9. - tip
  10. script:
  11. - go test -tags "alltests" -run Suite -coverprofile coverage.txt github.com/ugorji/go/codec
  12. after_success:
  13. - bash <(curl -s https://codecov.io/bash)