Skip to content

Commit b075bab

Browse files
authored
Merge pull request #13102 from quarto-dev/gha/ff-matrix-fix
[GHA] Running ffmatrix requires globstar to be enabled in bash.
2 parents b9457f2 + 9d718d1 commit b075bab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-smokes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ jobs:
235235
readarray -t my_array < <(echo '${{ inputs.buckets }}' | jq -rc '.[]')
236236
for file in "${my_array[@]}"; do
237237
echo ">>> ./run-tests.sh ${file}"
238-
./run-tests.sh $file
238+
shopt -s globstar && ./run-tests.sh $file
239239
status=$?
240240
[ $status -eq 0 ] && echo ">>> No error in this test file" || haserror=1
241241
done

0 commit comments

Comments
 (0)