File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 1818 with :
1919 python-version : ' 3.11.10'
2020 - name : Install poetry
21- run : pip install poetry
21+ run : |
22+ POETRY_VERSION=$(grep -E '^requires-poetry = ' pyproject.toml | sed -E 's/requires-poetry = "(.*)"/\1/')
23+ pip install poetry==$POETRY_VERSION
2224 - name : Install dependencies
23- run : python -m poetry install
25+ run : poetry install
2426 - name : Ruff check
2527 run : poetry run ruff check .
2628 - name : Ruff format check
3638 with :
3739 python-version : ' 3.11.10'
3840 - name : Install poetry
39- run : pip install poetry
41+ run : |
42+ POETRY_VERSION=$(grep -E '^requires-poetry = ' pyproject.toml | sed -E 's/requires-poetry = "(.*)"/\1/')
43+ pip install poetry==$POETRY_VERSION
4044 - name : Install dependencies
41- run : python -m poetry install
45+ run : poetry install
4246 - name : configure AWS
4347 uses : aws-actions/configure-aws-credentials@v4
4448 with :
You can’t perform that action at this time.
0 commit comments