Skip to content

Commit 8af1f04

Browse files
feat: explicitly set the shell for just setup action and related
1 parent d57c86b commit 8af1f04

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/actions.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
defaults:
2121
run:
22-
shell: powershell
22+
shell: pwsh
2323

2424
steps:
2525
- name: Check out repository
@@ -53,18 +53,28 @@ jobs:
5353

5454
- name: Setup just
5555
uses: taiki-e/install-action@just
56+
with:
57+
shell: pwsh
5658

5759
- name: Enforce code style (Ruff)
5860
run: just ruff-show-violations
61+
with:
62+
shell: pwsh
5963

6064
- name: Verify code formatting (Black)
6165
run: just black-check
66+
with:
67+
shell: pwsh
6268

6369
- name: Run tests
6470
run: just test
71+
with:
72+
shell: pwsh
6573

6674
- name: Generate test coverage report
6775
run: just test-and-report-cov
76+
with:
77+
shell: pwsh
6878

6979
- name: Upload coverage reports to Codecov
7080
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)