Skip to content

Commit 442a7c6

Browse files
testing test action
1 parent 3baef42 commit 442a7c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ jobs:
6363
- name: Check for test files
6464
id: check_tests
6565
run: |
66-
test_files=$(find ./solutions/tests -type f -name "test_*.py")
66+
test_files=$(find . -type f -name "**/test_*.py")
6767
if [ -n "$test_files" ]; then
6868
echo "Found test files:"
6969
echo "$test_files"
7070
echo "has_tests=true" >> $GITHUB_OUTPUT
7171
else
72-
echo "No test files found matching pattern ./solutions/tests/test_*.py"
72+
echo "No test files found matching pattern **/test_*.py"
7373
echo "has_tests=false" >> $GITHUB_OUTPUT
7474
fi
7575
shell: bash

0 commit comments

Comments
 (0)