File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,14 +14,14 @@ jobs:
1414 timeout-minutes : 10
1515 steps :
1616 - uses : actions/checkout@v4
17- - name : Install poetry
18- run : pipx install poetry
1917 - uses : actions/setup-python@v5
2018 with :
2119 python-version : ' 3.11.10'
2220 cache : ' poetry'
21+ - name : Install poetry
22+ run : pip install poetry
2323 - name : Install dependencies
24- run : poetry install
24+ run : python -m poetry install
2525 - name : Ruff check
2626 run : poetry run ruff check .
2727 - name : Ruff format check
@@ -33,14 +33,14 @@ jobs:
3333 timeout-minutes : 60
3434 steps :
3535 - uses : actions/checkout@v4
36- - name : Install poetry
37- run : pipx install poetry
3836 - uses : actions/setup-python@v5
3937 with :
4038 python-version : ' 3.11.10'
4139 cache : ' poetry'
40+ - name : Install poetry
41+ run : pip install poetry
4242 - name : Install dependencies
43- run : poetry install
43+ run : python -m poetry install
4444 - name : configure AWS
4545 uses : aws-actions/configure-aws-credentials@v4
4646 with :
You can’t perform that action at this time.
0 commit comments