Skip to content

Commit a1cf54d

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

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ 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}} --python python${{matrix.python-version}}
3737
- name: Install dependencies
3838
run: poetry install
3939
- name: Run mypy - static type checking

0 commit comments

Comments
 (0)