File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ jobs:
3232
3333 - name : Check imports
3434 run : |
35- python -c "from web.main import app; print('✓ FastAPI app loads')"
36- python -c "import desktop; print('✓ Desktop launcher loads')"
35+ python -c "from web.main import app; print('[OK] FastAPI app loads')"
36+ python -c "import desktop; print('[OK] Desktop launcher loads')"
3737
3838 - name : Verify file structure
3939 run : |
40- python -c "from pathlib import Path; assert (Path('web') / 'main.py').exists(); print('✓ File structure OK')"
40+ python -c "from pathlib import Path; assert (Path('web') / 'main.py').exists(); print('[OK] File structure OK')"
4141
4242 lint :
4343 name : Code Quality
6060 - name : Run Ruff
6161 run : |
6262 ruff check . --exit-zero
63- echo "✓ Code quality check complete"
63+ echo "[OK] Code quality check complete"
You can’t perform that action at this time.
0 commit comments