We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3baef42 commit 442a7c6Copy full SHA for 442a7c6
.github/workflows/ci-checks.yml
@@ -63,13 +63,13 @@ jobs:
63
- name: Check for test files
64
id: check_tests
65
run: |
66
- test_files=$(find ./solutions/tests -type f -name "test_*.py")
+ test_files=$(find . -type f -name "**/test_*.py")
67
if [ -n "$test_files" ]; then
68
echo "Found test files:"
69
echo "$test_files"
70
echo "has_tests=true" >> $GITHUB_OUTPUT
71
else
72
- echo "No test files found matching pattern ./solutions/tests/test_*.py"
+ echo "No test files found matching pattern **/test_*.py"
73
echo "has_tests=false" >> $GITHUB_OUTPUT
74
fi
75
shell: bash
0 commit comments