.travis.yml 278 B

1234567891011121314151617
  1. language: go
  2. go:
  3. - 1.8
  4. - master
  5. go_import_path: gopkg.in/src-d/hercules.v2
  6. script:
  7. - go test -v -cpu=1,2 -coverprofile=coverage.txt -covermode=count gopkg.in/src-d/hercules.v2
  8. after_success:
  9. - bash <(curl -s https://codecov.io/bash)
  10. notifications:
  11. email: false