We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b9f5ff commit 6e869a1Copy full SHA for 6e869a1
1 file changed
.github/workflows/code-checks.yaml
@@ -17,8 +17,9 @@ jobs:
17
- uses: actions/setup-python@v5
18
with:
19
python-version: '3.11.10'
20
- - name: Install poetry
21
- run: pip install poetry
+ run: |
+ POETRY_VERSION=$(grep -E '^requires-poetry = ' pyproject.toml | sed -E 's/requires-poetry = "(.*)"/\1/')
22
+ pip install poetry==$POETRY_VERSION
23
- name: Install dependencies
24
run: python -m poetry install
25
- name: Ruff check
@@ -36,7 +37,9 @@ jobs:
36
37
38
39
- name: Install poetry
40
41
42
43
44
45
- name: configure AWS
0 commit comments