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.
This commit is contained in:
parent
145043fdb3
commit
5b6318fcbb
1 changed files with 1 additions and 0 deletions
1
.github/workflows/ci.yaml
vendored
1
.github/workflows/ci.yaml
vendored
|
|
@ -139,6 +139,7 @@ jobs:
|
|||
enable-cache: true
|
||||
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ "${{ matrix.python-version }}" == "3.9" || "${{ matrix.python-version }}" == "3.13" ]]; then
|
||||
uv sync --group tests
|
||||
|
|
|
|||
Loading…
Reference in a new issue