spf13--viper/.travis.yml

27 lines
361 B
YAML
Raw Normal View History

go_import_path: github.com/spf13/viper
2014-11-13 15:38:47 -05:00
language: go
go:
- 1.7.5
- 1.8
2014-11-13 15:38:47 -05:00
- tip
2016-06-06 00:03:07 +02:00
os:
- linux
- osx
2014-11-13 15:38:47 -05:00
2016-05-08 14:34:24 +02:00
matrix:
allow_failures:
- go: tip
2016-08-16 10:09:34 +02:00
fast_finish: true
2016-05-08 14:34:24 +02:00
2014-11-13 15:38:47 -05:00
script:
- go install ./...
2014-11-13 15:38:47 -05:00
- go test -v ./...
after_success:
- go get -u -d github.com/spf13/hugo
- cd $GOPATH/src/github.com/spf13/hugo && make && ./hugo -s docs && cd -
2015-11-04 18:15:48 -05:00
sudo: false