.travis.yml 230 B

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