get travis CI green again (#157)

* fix test to work w/ newer grpc repo; run 'make ci' to have it update go.mod and go.sum, trying to repro ci failure locally
* vet w/ go 1.13; use normal go proxy instead of direct in CI
This commit is contained in:
Joshua Humphries
2020-05-12 13:06:14 -04:00
committed by GitHub
parent 8e2cf9b3c2
commit b58182a88d
5 changed files with 53 additions and 22 deletions

View File

@@ -42,12 +42,6 @@ checkgofmt:
vet:
go vet ./...
# TODO: remove the ignored check; need it for now because it
# is complaining about a deprecated comment added to grpc,
# but it's not yet released. Once the new (non-deprecated)
# API is included in a release, we can move to that new
# version and fix the call site to no longer use deprecated
# method.
# This all works fine with Go modules, but without modules,
# CI is just getting latest master for dependencies like grpc.
.PHONY: staticcheck