diff --git a/.travis.yml b/.travis.yml index 66c7e0ee..a0b8687b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ language: go dist: xenial go: - - 1.9.x - - 1.10.x - 1.11.x - 1.12.x go_import_path: k8s.io/utils diff --git a/Makefile b/Makefile index 6168b50a..b15a1508 100644 --- a/Makefile +++ b/Makefile @@ -13,24 +13,20 @@ # limitations under the License. .PHONY: verify -verify: depend verify-fmt verify-lint vet - go test -v -race ./... - -.PHONY: depend -depend: - go get -t -v ./... +verify: verify-fmt verify-lint vet + GO111MODULE=on go test -v -race ./... .PHONY: verify-fmt verify-fmt: - ./hack/verify-gofmt.sh + GO111MODULE=on ./hack/verify-gofmt.sh .PHONY: verify-lint verify-lint: - ./hack/verify-golint.sh + GO111MODULE=on ./hack/verify-golint.sh .PHONY: vet vet: - ./hack/verify-govet.sh + GO111MODULE=on ./hack/verify-govet.sh .PHONY: update-fmt update-fmt: