Skip to content

Commit 5dec841

Browse files
committed
don't use action to install poetry
1 parent 331cf61 commit 5dec841

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,14 @@ jobs:
5050
with:
5151
distribution: 'temurin'
5252
java-version: '21'
53-
- name: install-poetry
54-
uses: abatilo/actions-poetry@v3
53+
- name: setup-python
54+
uses: actions/setup-python@v5
5555
with:
5656
python-version: ${{ matrix.python-version }}
5757
- name: poetry install
58-
run: poetry install --all-extras
58+
run: |
59+
python3 -m install "poetry~=2.2.1"
60+
poetry install --all-extras
5961
- name: install pytest-xdist for parallel tests
6062
run: poetry run pip install pytest-xdist
6163
- name: lint

0 commit comments

Comments
 (0)