.travis.yml 280 B

12345678910111213141516
  1. language: go
  2. go:
  3. - 1.7
  4. - 1.8
  5. - 1.9
  6. - "1.10"
  7. - tip
  8. script:
  9. - go test -v -race -parallel 5 -coverprofile=coverage.txt -covermode=atomic ./
  10. - go test github.com/fortytw2/leaktest -run ^TestEmptyLeak$
  11. before_install:
  12. - pip install --user codecov
  13. after_success:
  14. - codecov