File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,12 @@ jobs:
1919 with :
2020 python-version : " 3.9"
2121
22- - name : Install poetry and dependencies
23- run : |
24- python -m pip install --upgrade pip
25- python -m pip install poetry
22+ - name : Install Poetry
23+ uses : snok/install-poetry@v1
24+ with :
25+ version : latest
26+ virtualenvs-create : true
27+ virtualenvs-in-project : true
2628
2729 - name : Configure poetry
2830 env :
Original file line number Diff line number Diff line change 3232 - name : Install Poetry
3333 uses : snok/install-poetry@v1
3434 with :
35+ version : latest
3536 virtualenvs-create : true
3637 virtualenvs-in-project : true
3738
4445
4546 - name : Install dependencies
4647 if : steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
47- run : poetry install --no-interaction
48+ run : poetry install --no-interaction --all-extras
4849
4950 - name : Run tests
5051 run : |
You can’t perform that action at this time.
0 commit comments