http urls monitor.

.travis.yml 402B

12345678910111213141516171819202122232425262728
  1. go_import_path: github.com/spf13/viper
  2. language: go
  3. go:
  4. - 1.10.x
  5. - 1.11.x
  6. - tip
  7. os:
  8. - linux
  9. - osx
  10. matrix:
  11. allow_failures:
  12. - go: tip
  13. fast_finish: true
  14. script:
  15. - go install ./...
  16. - diff -u <(echo -n) <(gofmt -d .)
  17. - go test -v ./...
  18. after_success:
  19. - go get -u -d github.com/spf13/hugo
  20. - cd $GOPATH/src/github.com/spf13/hugo && make && ./hugo -s docs && cd -
  21. sudo: false