Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 0.0.3 to 1.4.0. - [Release notes](https://github.com/spf13/cobra/releases) - [Changelog](https://github.com/spf13/cobra/blob/v1.4.0/CHANGELOG.md) - [Commits](https://github.com/spf13/cobra/compare/v0.0.3...v1.4.0) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
261 B
YAML
22 lines
261 B
YAML
sudo: false
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.9.x
|
|
- 1.10.x
|
|
- 1.11.x
|
|
- tip
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
install:
|
|
- go get golang.org/x/lint/golint
|
|
- export PATH=$GOPATH/bin:$PATH
|
|
- go install ./...
|
|
|
|
script:
|
|
- verify/all.sh -v
|
|
- go test ./...
|