.travis.yml 207 B

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