ci: expand acceptable grcov version regex

This commit is contained in:
Trent Nelson 2021-08-03 23:26:50 -06:00 committed by mergify[bot]
parent 38fb6dcf86
commit 9912b73f9f
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ if ! command -v grcov; then
exit 1
fi
if [[ ! "$(grcov --version)" =~ 0.[678].[01] ]]; then
if [[ ! "$(grcov --version)" =~ 0.[678].[012] ]]; then
echo Error: Required grcov version not installed
echo "Installed version: $(grcov --version)"