.travis.yml 197 B

12345678910111213
  1. language: go
  2. go:
  3. - 1.11.x
  4. env:
  5. - GO111MODULE=on
  6. script:
  7. - go test -short -coverprofile=coverage.txt -covermode=count ./...
  8. after_success:
  9. - bash <(curl -s https://codecov.io/bash)