Skip to content

Commit

Permalink
Set bash as the shell for test execution in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlKCarlK committed Nov 2, 2024
1 parent b1ac877 commit 48c7702
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ jobs:
- name: Install minimal dependencies
run: uv sync --extra min_dev
- name: Run min tests
shell: bash
run: |
if [[ "$RUNNER_OS" != "Windows" ]]; then
source .venv/bin/activate
Expand All @@ -194,6 +195,7 @@ jobs:
- name: Install all dependencies
run: uv sync --all-extras
- name: Run all tests
shell: bash
run: |
if [[ "$RUNNER_OS" != "Windows" ]]; then
source .venv/bin/activate
Expand Down

0 comments on commit 48c7702

Please sign in to comment.