Skip to content

Commit 9aa7767

Browse files
committed
Revert "Optimize GitHub Actions workflow by using PowerShell on Windows runners for better compatibility"
This reverts commit 59c5ffa.
1 parent 59c5ffa commit 9aa7767

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
fail-fast: false
1717

1818
runs-on: ${{ matrix.os }}
19+
defaults:
20+
run:
21+
shell: bash
1922
steps:
2023
- name: Check out
2124
uses: actions/[email protected]
@@ -31,11 +34,9 @@ jobs:
3134
allow-prereleases: true
3235
- name: Install the project
3336
run: uv sync --all-extras --dev
34-
shell: bash
3537

3638
- name: Run tests
3739
run: uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
38-
shell: bash
3940

4041
- name: Upload test results to Codecov
4142
if: ${{ !cancelled() }}
@@ -44,7 +45,6 @@ jobs:
4445
flags: python${{ matrix.python-version }}
4546
name: codecov-umbrella-test-results
4647
token: ${{ secrets.CODECOV_TOKEN }}
47-
shell: bash
4848
- name: Upload coverage to Codecov
4949
uses: codecov/codecov-action@v5
5050
with:
@@ -54,4 +54,3 @@ jobs:
5454
name: codecov-umbrella
5555
token: ${{ secrets.CODECOV_TOKEN }}
5656
verbose: true
57-
shell: bash

0 commit comments

Comments
 (0)