Fix CI workflow YAML syntax: escape curly braces in python command

This commit is contained in:
Kacper Kwapisz
2026-03-22 21:47:40 +01:00
parent eb76dbb489
commit c034589666
+1 -1
View File
@@ -28,7 +28,7 @@ jobs:
cache: pip
- run: pip install -r requirements.txt
- name: Verify imports
run: python -c "from src.server import mcp; print(f'OK: {mcp.name}')"
run: python -c "from src.server import mcp; print('OK:', mcp.name)"
docker:
runs-on: ubuntu-latest