Skip to content

Commit 543513c

Browse files
authored
Merge pull request #26 from BruinGrowly/feat-config-file
fix(ci): Update CI workflow to align with project refactoring
2 parents f419fa8 + d9d7cc9 commit 543513c

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
@@ -38,12 +38,12 @@ jobs:
3838
3939
- name: Test with pytest
4040
run: |
41-
pytest
41+
python -m pytest
4242
4343
- name: Check Code Harmony
4444
run: |
4545
# v1.2+: Harmony check with automatic exit codes
4646
# Note: Currently informational as source has some disharmony
4747
# (This demonstrates the tool working - it found semantic issues!)
48-
find src -name "*.py" -type f | xargs harmonizer || echo "⚠️ Disharmony found (tool is working correctly!)"
48+
find harmonizer -name "*.py" -type f | xargs harmonizer || echo "⚠️ Disharmony found (tool is working correctly!)"
4949
continue-on-error: true

0 commit comments

Comments
 (0)