Skip to content

Commit 5b6318f

Browse files
committed
fix(ci): add shell: bash to conditional install step for Windows
The bash [[ ]] syntax fails on Windows runners which default to PowerShell. Explicitly setting shell: bash fixes the ParserError.
1 parent 145043f commit 5b6318f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ jobs:
139139
enable-cache: true
140140

141141
- name: Install dependencies
142+
shell: bash
142143
run: |
143144
if [[ "${{ matrix.python-version }}" == "3.9" || "${{ matrix.python-version }}" == "3.13" ]]; then
144145
uv sync --group tests

0 commit comments

Comments
 (0)