Skip to content

Commit 7a85376

Browse files
committed
fix: replace poetry installation with bash for github actions
1 parent 383b605 commit 7a85376

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ jobs:
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333
- name: Install poetry
34-
uses: abatilo/actions-poetry@v3
35-
with:
36-
poetry-version: ${{ matrix.poetry-version }}
34+
shell: bash
35+
run: |
36+
pipx install poetry==${{matrix.poetry-version}}
37+
python -m poetry config virtualenvs.use-poetry-python true
3738
- name: Install dependencies
3839
run: poetry install
3940
- name: Run mypy - static type checking

0 commit comments

Comments
 (0)