.travis.yml 371 B

12345678910111213141516171819202122232425262728
  1. go_import_path: github.com/spf13/viper
  2. language: go
  3. go:
  4. - 1.5.4
  5. - 1.6.3
  6. - 1.7
  7. - tip
  8. os:
  9. - linux
  10. - osx
  11. matrix:
  12. allow_failures:
  13. - go: tip
  14. fast_finish: true
  15. script:
  16. - go install ./...
  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