.travis.yml 240 B

12345678910111213
  1. language: go
  2. go:
  3. - 1.11.x
  4. - tip
  5. env:
  6. - GO111MODULE=on
  7. script:
  8. - go test -race -coverprofile=coverage.txt -covermode=atomic ./...
  9. after_success:
  10. - bash <(curl -s https://codecov.io/bash)
  11. matrix:
  12. allow_failures:
  13. - go: tip