spf13--cobra/.travis.yml

25 lines
712 B
YAML
Raw Normal View History

2013-09-24 12:39:05 -04:00
language: go
matrix:
include:
- go: 1.7.x
- go: 1.8.x
- go: 1.9.x
- go: master
2016-05-09 11:37:22 +02:00
allow_failures:
- go: master
2016-05-09 11:37:22 +02:00
2016-04-02 22:45:01 +02:00
before_install:
- mkdir -p bin
- curl -Lso bin/shellcheck https://github.com/caarlos0/shellcheck-docker/releases/download/v0.4.3/shellcheck
- chmod +x bin/shellcheck
2013-09-24 12:39:05 -04:00
script:
- GOPKGS_NOVENDOR=$(go list ./... | grep -v /vendor/)
- GOFILES_NOVENDOR=$(find . -type f -name '*.go' -not -path "*/vendor/*")
- PATH=$PATH:$PWD/bin go test -v $GOPKGS_NOVENDOR
2013-09-24 12:39:05 -04:00
- go build
- diff -u <(echo -n) <(gofmt -d -s $GOFILES_NOVENDOR)
- if [ -z $NOVET ]; then
diff -u <(echo -n) <(go vet $GOPKGS_NOVENDOR 2>&1 | grep -vE 'ExampleCommand|bash_completions.*Fprint');
fi