http urls monitor.

.travis.yml 255B

12345678910111213141516171819
  1. language: go
  2. go:
  3. - 1.8.x
  4. - 1.9.x
  5. - 1.10.x
  6. before_install:
  7. - make deps
  8. script:
  9. - make lint
  10. - make build
  11. - make test
  12. - go test -race -coverprofile=coverage.txt -covermode=atomic
  13. after_success:
  14. - bash <(curl -s https://codecov.io/bash)