We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f40967f commit 6adec8bCopy full SHA for 6adec8b
1 file changed
.github/workflows/tests.yml
@@ -32,8 +32,14 @@ jobs:
32
uses: actions/setup-python@v4
33
with:
34
python-version: ${{ matrix.python-version }}
35
- # Use pip cache by default to avoid poetry.lock dependency
36
- cache: 'pip'
+
+ - name: Cache pip packages
37
+ uses: actions/cache@v3
38
+ with:
39
+ path: ~/.cache/pip
40
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
41
+ restore-keys: |
42
+ ${{ runner.os }}-pip-
43
44
- name: Debug system info
45
run: |
0 commit comments