Skip to content

Commit 6a06881

Browse files
authored
Update poetry test execution steps which causing to fail workflow
1 parent 2764d56 commit 6a06881

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/test-execution.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,24 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
36+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
37+
poetry-version: ["latest"]
3738
steps:
3839
- uses: actions/checkout@v4
3940
- name: Set up Python ${{ matrix.python-version }}
4041
uses: actions/setup-python@v5
4142
with:
4243
python-version: ${{ matrix.python-version }}
43-
- uses: abatilo/actions-poetry@v3
44+
- uses: abatilo/actions-poetry@v2
4445
with:
45-
poetry-version: 1.4.0
46+
poetry-version: ${{ matrix.poetry-version }}
47+
- name: View poetry --help
48+
run: poetry --help
4649
- name: Install dependencies
4750
run: |
4851
python -m pip install --upgrade pip
49-
python -m pip install pytest
52+
python -m pip install --upgrade pytest
53+
python -m pip install --upgrade poetry
5054
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
5155
if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi
5256
poetry install --with dev

0 commit comments

Comments
 (0)