.github/workflows: remove code coverage report for folder example (#3608)

This commit is contained in:
海亮
2024-05-30 21:05:35 +08:00
committed by GitHub
parent f8175e7113
commit 57583a98bc

View File

@ -52,6 +52,12 @@ for file in `find . -name go.mod`; do
echo "ignore example as go version: $(go version)"
continue 1
fi
echo "the example directory only needs to be built, not unit tests and coverage tests."
cd $dirpath
go mod tidy
go build ./...
cd -
continue 1
fi
# package otlpgrpc needs golang >= v1.20