Skip to content

Commit 6933a28

Browse files
Revert "Remove cacheing"
This reverts commit 653322e.
1 parent 501d934 commit 6933a28

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,15 @@ jobs:
2828
- name: Install Pipenv
2929
uses: dschep/install-pipenv-action@v1
3030

31+
- name: Cache Python dependencies
32+
uses: actions/cache@v1
33+
with:
34+
path: .venv
35+
key: pip-${{ matrix.python-version }}-${{ hashFiles('**/Pipfile.lock') }}
36+
restore-keys: |
37+
pip-${{ matrix.python-version }}-
38+
pip-
39+
3140
- name: Install dependencies
3241
run: pipenv sync --dev
3342
env:

0 commit comments

Comments
 (0)