.travis.yml 472 B

12345678910111213141516171819
  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. - $GOPATH/bin/hercules -files -people -couples https://github.com/src-d/hercules > /dev/null
  9. - $GOPATH/bin/hercules -files -people -couples -pb https://github.com/src-d/hercules > /dev/null
  10. after_success:
  11. - bash <(curl -s https://codecov.io/bash)
  12. notifications:
  13. email: false