dispatch/vendor/github.com/spf13/viper/.travis.yml

32 lines
429 B
YAML
Raw Normal View History

2018-08-31 01:07:13 +00:00
go_import_path: github.com/spf13/viper
language: go
2018-12-06 10:03:03 +00:00
env:
global:
- GO111MODULE="on"
2018-08-31 01:07:13 +00:00
go:
2018-10-06 06:09:29 +00:00
- 1.11.x
2018-08-31 01:07:13 +00:00
- tip
os:
- linux
- osx
matrix:
allow_failures:
- go: tip
fast_finish: true
script:
- go install ./...
- diff -u <(echo -n) <(gofmt -d .)
- 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 -
sudo: false