summaryrefslogtreecommitdiff
path: root/cmd/ponzu/vendor/github.com/spf13/cobra/.travis.yml
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2017-05-22 02:02:21 -0700
committerSteve Manuel <nilslice@gmail.com>2017-05-22 02:02:21 -0700
commit93a3314f25c9da95275bd912fd4391b7f65740e1 (patch)
treed703a4cf1443771c718af3d58c8ab5c60de99f04 /cmd/ponzu/vendor/github.com/spf13/cobra/.travis.yml
parentba0166f681e054afd6a3c9192ea1c68e6d7bc6a5 (diff)
vendor spf13/cobra
Diffstat (limited to 'cmd/ponzu/vendor/github.com/spf13/cobra/.travis.yml')
-rw-r--r--cmd/ponzu/vendor/github.com/spf13/cobra/.travis.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/cmd/ponzu/vendor/github.com/spf13/cobra/.travis.yml b/cmd/ponzu/vendor/github.com/spf13/cobra/.travis.yml
new file mode 100644
index 0000000..cb2bf0d
--- /dev/null
+++ b/cmd/ponzu/vendor/github.com/spf13/cobra/.travis.yml
@@ -0,0 +1,21 @@
+language: go
+
+matrix:
+ include:
+ - go: 1.7.5
+ - go: 1.8.1
+ - go: tip
+ allow_failures:
+ - go: tip
+
+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
+script:
+ - PATH=$PATH:$PWD/bin go test -v ./...
+ - go build
+ - diff -u <(echo -n) <(gofmt -d -s .)
+ - if [ -z $NOVET ]; then
+ diff -u <(echo -n) <(go tool vet . 2>&1 | grep -vE 'ExampleCommand|bash_completions.*Fprint');
+ fi