We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 331cf61 commit 5dec841Copy full SHA for 5dec841
.github/workflows/ci.yml
@@ -50,12 +50,14 @@ jobs:
50
with:
51
distribution: 'temurin'
52
java-version: '21'
53
- - name: install-poetry
54
- uses: abatilo/actions-poetry@v3
+ - name: setup-python
+ uses: actions/setup-python@v5
55
56
python-version: ${{ matrix.python-version }}
57
- name: poetry install
58
- run: poetry install --all-extras
+ run: |
59
+ python3 -m install "poetry~=2.2.1"
60
+ poetry install --all-extras
61
- name: install pytest-xdist for parallel tests
62
run: poetry run pip install pytest-xdist
63
- name: lint
0 commit comments