Skip to content

Commit 0865876

Browse files
Use bash as default shell for cross-platform glob support
Set bash as the default shell for the test job to ensure glob patterns work consistently on both Ubuntu and Windows runners. This simplifies the workflow by avoiding platform-specific paths. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 22e0018 commit 0865876

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
test:
2424
needs: build-and-inspect
2525
runs-on: ${{ matrix.os }}
26+
defaults:
27+
run:
28+
shell: bash
2629

2730
strategy:
2831
fail-fast: false
@@ -50,7 +53,6 @@ jobs:
5053
ls -la dist/
5154
test -f dist/*.whl || (echo "No wheel found!" && exit 1)
5255
test -f dist/*.tar.gz || (echo "No sdist found!" && exit 1)
53-
shell: bash
5456
5557
- name: Install uv
5658
uses: astral-sh/setup-uv@v7

0 commit comments

Comments
 (0)