Merge pull request #480 from nikhita/travis-check-branch

travis: run godep restore for non-master branches
This commit is contained in:
k8s-ci-robot
2018-10-05 07:33:22 -07:00
committed by GitHub

View File

@@ -5,4 +5,6 @@ go_import_path: k8s.io/client-go
go:
- 1.10.2
script: go build ./...
script:
- if [ "$TRAVIS_BRANCH" != "master" ]; then godep restore; fi
- go build ./...