Skip to content

Commit

Permalink
feat: explicitly set the shell for just setup action and related
Browse files Browse the repository at this point in the history
  • Loading branch information
AlessandroMiola committed Jan 24, 2024
1 parent d57c86b commit 8af1f04
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
shell: powershell
shell: pwsh

steps:
- name: Check out repository
Expand Down Expand Up @@ -53,18 +53,28 @@ jobs:

- name: Setup just
uses: taiki-e/install-action@just
with:
shell: pwsh

- name: Enforce code style (Ruff)
run: just ruff-show-violations
with:
shell: pwsh

- name: Verify code formatting (Black)
run: just black-check
with:
shell: pwsh

- name: Run tests
run: just test
with:
shell: pwsh

- name: Generate test coverage report
run: just test-and-report-cov
with:
shell: pwsh

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 8af1f04

Please sign in to comment.