Travis: do not fetch modules during CI (#677)

This commit is contained in:
Marwan Sulaiman
2018-09-19 04:29:17 -04:00
committed by marpio
parent 28839219a8
commit d03eb7ba03
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ setup-dev-env:
verify:
./scripts/check_gofmt.sh
./scripts/check_golint.sh
./scripts/check_deps.sh
# ./scripts/check_deps.sh TODO: comment back when we stop using vendor.
./scripts/check_conflicts.sh
.PHONY: test
+1 -1
View File
@@ -4,4 +4,4 @@
# Run the linter on everything except generated code
set -euo pipefail
golint -set_exit_status $(go list ./... | grep -v '/mocks')
GO111MODULE=off golint -set_exit_status $(go list ./... | grep -v '/mocks')