Skip to content

Commit 6adec8b

Browse files
author
Tom Softreck
committed
update
1 parent f40967f commit 6adec8b

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,14 @@ jobs:
3232
uses: actions/setup-python@v4
3333
with:
3434
python-version: ${{ matrix.python-version }}
35-
# Use pip cache by default to avoid poetry.lock dependency
36-
cache: 'pip'
35+
36+
- 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-
3743
3844
- name: Debug system info
3945
run: |

0 commit comments

Comments
 (0)