Exlude golangci-lint v1.24.0 which breaks CI

This commit is contained in:
Yujun Zhang
2020-03-16 15:25:16 +08:00
parent 5b774d09e1
commit cad69ae415
4 changed files with 362 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ set -x
set -e
# verify all modules pass validation
for i in $(find . -name go.mod); do
for i in $(find . -name go.mod -not -path "./hack/*"); do
pushd .
cd $(dirname $i);
go list -m -json all > /dev/null