From 8af1f04ff1918eb1c706a677401b45ad8ffa2712 Mon Sep 17 00:00:00 2001 From: AlessandroMiola Date: Wed, 24 Jan 2024 11:28:44 +0100 Subject: [PATCH] feat: explicitly set the shell for just setup action and related --- .github/workflows/actions.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 2649a00..e3144a9 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest defaults: run: - shell: powershell + shell: pwsh steps: - name: Check out repository @@ -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