Skip to content

Commit 8043740

Browse files
committed
fix: replace Unicode checkmarks with ASCII [OK] in tests workflow
Windows GitHub Actions runners use cp1252 encoding which cannot encode Unicode characters like (U+2713). Use [OK] instead as per project conventions.
1 parent 8a37589 commit 8043740

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
@@ -60,4 +60,4 @@ jobs:
6060
- name: Run Ruff
6161
run: |
6262
ruff check . --exit-zero
63-
echo " Code quality check complete"
63+
echo "[OK] Code quality check complete"

0 commit comments

Comments
 (0)