Skip to content

Commit bb93169

Browse files
miriamkwclaude
andcommitted
Fix Windows CI PowerShell vs bash error
- Add 'shell: bash' to Install dependencies step - Resolves PowerShell syntax error on Windows: "Missing '(' after 'if' in if statement" - Windows runners default to PowerShell but step uses bash syntax - Ensures consistent bash shell usage across all platforms (macOS, Linux, Windows) - Matches pattern already used in other CI steps 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent dd221e2 commit bb93169

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
swift-version: "5.10"
4646

4747
- name: Install dependencies
48+
shell: bash
4849
run: |
4950
python -m pip install --upgrade pip
5051
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

0 commit comments

Comments
 (0)