fix(ci): avoid YAML parse ambiguity in FastAPI import step

This commit is contained in:
cft0808
2026-04-27 23:01:54 +08:00
parent 66630203a4
commit 1ceee6bc68

View File

@@ -120,4 +120,5 @@ jobs:
- name: Verify FastAPI app imports
working-directory: edict/backend
run: python -c "from app.main import app; print(f'FastAPI app loaded: {len(app.routes)} routes')"
run: |
python -c "from app.main import app; print(f'FastAPI app loaded: {len(app.routes)} routes')"