Skip to content

Commit 764e181

Browse files
committed
ci(github): use bash shell for test workflow
1 parent 4949857 commit 764e181

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,12 @@ jobs:
5757

5858
- name: Install dependencies
5959
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
60+
shell: bash
6061
run: poetry install --no-interaction --no-root
6162

6263
- name: Run tests
63-
run: |
64-
poetry run pytest --cov-report=xml --cov=${{ env.PACKAGE_NAME }} tests/
64+
shell: bash
65+
run: poetry run pytest --cov-report=xml --cov=${{ env.PACKAGE_NAME }} tests/
6566

6667
- name: Upload coverage to Codecov
6768
uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)