Skip to content

Commit 2c3c253

Browse files
author
arman-bd
committed
fix: correct YAML syntax for multi-line Python command
1 parent b7c0d83 commit 2c3c253

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/_test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,13 +205,15 @@ jobs:
205205
ls -R build/ 2>/dev/null || echo "No build directory"
206206
echo "Checking DLL dependencies..."
207207
python -c "import sys; print('Python path:', sys.path)"
208-
python -c "try:
208+
python -c "
209+
try:
209210
import httpmorph._httpmorph
210211
print('SUCCESS: C extension loaded')
211212
except Exception as e:
212213
print(f'FAILED: {type(e).__name__}: {e}')
213214
import traceback
214-
traceback.print_exc()"
215+
traceback.print_exc()
216+
"
215217
shell: bash
216218
217219
- name: Lint

0 commit comments

Comments
 (0)