CI: pyflakes advisory only, compileall is hard gate

This commit is contained in:
2026-06-27 03:29:34 +03:00
parent 586160b1a0
commit 032b434f0b
+5 -3
View File
@@ -44,10 +44,12 @@ jobs:
pip install -r requirements.txt
pip install pyinstaller pyflakes
- name: Syntax check
- name: Syntax check (compileall — hard gate)
run: python -m compileall -q *.py
- name: Lint info (pyflakes — non-blocking advisory)
run: |
python -m pyflakes *.py
python -m compileall -q *.py
python -m pyflakes *.py || echo "Pyflakes warnings above (advisory only)"
- name: Verify .spec
run: |