fix: update code quality check messaging in fix.yml
Some checks failed
audit / audit (push) Successful in 2s
ci-cd / build (push) Successful in 11s
ci / build (push) Successful in 10s
autofix / fix (push) Successful in 53s
ci-cd / deploy (push) Has been cancelled
ci / deploy (push) Has been cancelled
test / test (push) Has been cancelled
security-scanning / audit (push) Has been cancelled

Changes:
- Update echo message from "critical code quality checks" to "basic code quality checks"
- Update flake8 comment from "critical errors only" to "code quality"
- Update fallback message to include "with warnings"
- Update completion message to remove "critical errors only" qualifier
This commit is contained in:
2026-03-27 15:20:37 +01:00
parent 66ee7c6f67
commit 6b5556addd

View File

@@ -89,11 +89,11 @@ jobs:
echo "✅ Python dependencies installed!"
echo "=== CODE QUALITY FIXES ==="
echo "Running critical code quality checks only..."
# Install and run flake8 for critical errors only
echo "Running basic code quality checks only..."
# Install and run flake8 for code quality
venv/bin/pip install flake8
venv/bin/flake8 . --select=E9,F63,F7,F82 --quiet || echo "Code quality checks completed"
echo "✅ Code quality checks completed - critical errors only"
venv/bin/flake8 . --select=E9,F63,F7,F82 --quiet || echo "Code quality checks completed with warnings"
echo "✅ Code quality checks completed"
else
echo "❌ No supported project type found!"
exit 1