Skip to content

Commit 5b9f8ea

Browse files
fix: use bash shell for debug step to work on Windows
The debug step was failing on Windows because it used Unix-specific paths and syntax. Adding 'shell: bash' ensures bash is used on both Unix and Windows (Git Bash is available on Windows runners).
1 parent 2fc9bc5 commit 5b9f8ea

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/shared.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858

5959
- name: Debug - Inspect installed anyio package
6060
if: matrix.dep-resolution.name == 'lowest-direct'
61+
shell: bash
6162
run: |
6263
echo "=== Anyio version from venv (direct check) ==="
6364
.venv/bin/python -c "from importlib.metadata import version; print(version('anyio'))"

0 commit comments

Comments
 (0)