.travis.yml 247 B

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