Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

*: use Go 1.14 for CI #11864

Merged
merged 10 commits into from
May 12, 2020
Prev Previous commit
Next Next commit
test: ignore vendor directory in govet test
Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
  • Loading branch information
gyuho committed May 10, 2020
commit b6ea32ee0fe2ba479355427940c99c945ccaaae9
2 changes: 1 addition & 1 deletion test
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ function gofmt_pass {
}

function govet_pass {
vetRes=$(go vet "${TEST[@]}")
vetRes=$(go vet -mod=mod "${TEST[@]}")
if [ -n "${vetRes}" ]; then
echo -e "govet checking failed:\\n${vetRes}"
exit 255
Expand Down