We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54e68a4 commit c6e3159Copy full SHA for c6e3159
.github/workflows/ci.yml
@@ -20,7 +20,7 @@ jobs:
20
with:
21
python-version: ${{ matrix.python-version }}
22
- name: cache pip
23
- uses: actions/cache@v2
+ uses: actions/cache@v3
24
25
path: ~/.cache/pip
26
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
.github/workflows/publish.yml
@@ -32,6 +32,14 @@ jobs:
32
uses: actions/setup-python@v3
33
34
python-version: 3.9
35
+ - name: cache pip
36
37
+ with:
38
+ path: ~/.cache/pip
39
+ key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
40
+ restore-keys: |
41
+ ${{ runner.os }}-pip-
42
+ ${{ runner.os }}-
43
- name: Install dependencies
44
run: |
45
python3 -m pip install poetry
0 commit comments