.travis.yml 189 B

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