.travis.yml 178 B

12345678910
  1. language: go
  2. go:
  3. - 1.x
  4. os:
  5. - linux
  6. - osx
  7. script:
  8. - go test -test.v -coverprofile=coverage.out -covermode=count
  9. after_success:
  10. - bash <(curl -s https://codecov.io/bash)