.travis.yml 251 B

123456789101112131415161718
  1. language: go
  2. go:
  3. - 1.9.x
  4. - 1.10.x
  5. - 1.11.x
  6. - 1.12.x
  7. - 1.13.x
  8. - tip
  9. before_install:
  10. - go get -t -v ./...
  11. script:
  12. - go test -race -coverprofile=coverage.txt -covermode=atomic
  13. after_success:
  14. - bash <(curl -s https://codecov.io/bash)