Skip to content

Commit af43a3d

Browse files
committed
Fixup of check.
1 parent 40a707a commit af43a3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ jobs:
137137

138138
- name: Validate test results
139139
run: |
140-
if [[ ! -f *-test-results/test_report_* ]]; then
141-
# No test output to parse
140+
if [[ ! -n "$(find . -name '*-test-results/test_report_*' -print -quit)" ]]; then
141+
echo "No test results found"
142142
exit 0
143143
fi
144144

0 commit comments

Comments
 (0)