File tree Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -16,23 +16,16 @@ jobs:
16
16
17
17
steps :
18
18
- uses : actions/checkout@v2
19
- - name : Set up Python ${{ matrix.python-version }}
20
- uses : actions/setup-python@v2
21
- with :
22
- python-version : ${{ matrix.python-version }}
23
19
24
20
- name : Install Poetry
25
-
26
- with :
27
- virtualenvs-create : true
28
- virtualenvs-in-project : true
29
-
30
- - name : Load cached venv
31
- id : cached-poetry-dependencies
32
- uses : actions/cache@v2
21
+ run : pipx install poetry
22
+
23
+ - name : Set up Python ${{ matrix.python-version }}
24
+ uses : actions/setup-python@v4
33
25
with :
34
- path : .venv
35
- key : venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
26
+ python-version : ${{ matrix.python-version }}
27
+ cache : " poetry"
28
+ cache-dependency-path : poetry.lock
36
29
37
30
- name : Install library and dependencies
38
31
run : poetry install --no-interaction
You can’t perform that action at this time.
0 commit comments