Raising validation threshold to 10000

This commit is contained in:
José Manuel Barroso Galindo
2022-12-27 03:02:00 +01:00
committed by GitHub
parent 2899c313c7
commit ddea1afdbb

View File

@@ -36,7 +36,7 @@ jobs:
set -euo pipefail
FILES=$(find . -type f | wc -l)
echo "FILES: ${FILES}"
if (( ${FILES} < 5000 )) ; then
if (( ${FILES} < 10000 )) ; then
echo "Not enough files!"
exit 1
fi