.travis.yml 209 B

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