.travis.yml 313 B

123456789101112131415161718192021
  1. language: go
  2. go:
  3. - 1.5
  4. - 1.6
  5. - 1.7
  6. - 1.8
  7. - 1.9
  8. - tip
  9. before_install:
  10. - go get golang.org/x/tools/cmd/cover
  11. script:
  12. - GOARCH=386 go test # test 32bit architectures.
  13. - go test -coverprofile=coverage.txt -covermode=atomic
  14. after_success:
  15. - bash <(curl -s https://codecov.io/bash)
  16. sudo: false