Skip to content

Commit 220f824

Browse files
fix: update CI workflow to find Python files in subdirectories
1 parent c6cfae2 commit 220f824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
- name: Verify project runs
2626
run: |
2727
python -c "import numpy, sklearn; print('Dependencies OK')"
28-
ls *.py && echo "Source files found"
28+
find . -name "*.py" | head -5 && echo "Source files found"

0 commit comments

Comments
 (0)