diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-03-30 17:47:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-30 17:47:28 +0200 |
commit | c77a57ff2c92f6ae5e8551b687f14884ade6e723 (patch) | |
tree | 49e422a5186de16c1ce3e9324837ba2e289c437d /vendor/github.com/spf13/cobra/.travis.yml | |
parent | 0fa01c8bf82a69d9c923fa982b70b72fade84be6 (diff) | |
parent | 16fa9b6a0baed65ad31ff442255a4d16ccbfcb31 (diff) | |
download | podman-c77a57ff2c92f6ae5e8551b687f14884ade6e723.tar.gz podman-c77a57ff2c92f6ae5e8551b687f14884ade6e723.tar.bz2 podman-c77a57ff2c92f6ae5e8551b687f14884ade6e723.zip |
Merge pull request #5662 from containers/dependabot/go_modules/github.com/spf13/cobra-0.0.7
Bump github.com/spf13/cobra from 0.0.6 to 0.0.7
Diffstat (limited to 'vendor/github.com/spf13/cobra/.travis.yml')
-rw-r--r-- | vendor/github.com/spf13/cobra/.travis.yml | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/vendor/github.com/spf13/cobra/.travis.yml b/vendor/github.com/spf13/cobra/.travis.yml index fca1e6948..a9bd4e547 100644 --- a/vendor/github.com/spf13/cobra/.travis.yml +++ b/vendor/github.com/spf13/cobra/.travis.yml @@ -3,26 +3,27 @@ language: go stages: - diff - test + - build go: - - 1.10.x - - 1.11.x - 1.12.x + - 1.13.x - tip +before_install: + - go get -u github.com/kyoh86/richgo + - go get -u github.com/mitchellh/gox + matrix: allow_failures: - go: tip include: - stage: diff - go: 1.12.x - script: diff -u <(echo -n) <(gofmt -d -s .) - -before_install: go get -u github.com/kyoh86/richgo + go: 1.13.x + script: make fmt + - stage: build + go: 1.13.x + script: make cobra_generator -script: - - richgo test -v ./... - - go build - - if [ -z $NOVET ]; then - diff -u <(echo -n) <(go vet . 2>&1 | grep -vE 'ExampleCommand|bash_completions.*Fprint'); - fi +script: + - make test |