From 5b6318fcbbc5faba55e14e192a662f3fba9bf02c Mon Sep 17 00:00:00 2001 From: Kevin Turcios Date: Thu, 9 Apr 2026 22:22:11 -0500 Subject: [PATCH] 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. --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a82685570..afdab9259 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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