Skip to content

Commit 0233c6f

Browse files
committed
ci: use shell bash for poetry commands on all platforms
1 parent dc70d2b commit 0233c6f

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@ jobs:
4949
- name: Install dependencies
5050
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
5151
run: poetry install --no-interaction --with dev --no-root
52+
shell: bash
5253

5354
- name: Install project
5455
run: poetry install --no-interaction
56+
shell: bash
5557

5658
- name: Run linting
5759
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,11 @@ jobs:
5151
- name: Install dependencies
5252
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
5353
run: poetry install --no-interaction --with dev --no-root
54+
shell: bash
5455

5556
- name: Install project
5657
run: poetry install --no-interaction
58+
shell: bash
5759

5860
- name: Run tests
5961
run: poetry run pytest tests/ -v

0 commit comments

Comments
 (0)