.travis.yml 193 B

12345678910111213
  1. language: go
  2. go:
  3. - "1.x"
  4. - "1.8"
  5. - "1.10.x"
  6. - master
  7. script:
  8. - go test -race -coverprofile=coverage.txt -covermode=atomic
  9. after_success:
  10. - bash <(curl -s https://codecov.io/bash)