We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28dee9a commit bd4b5acCopy full SHA for bd4b5ac
.github/workflows/python-app.yml
@@ -25,11 +25,17 @@ jobs:
25
uses: priyagupta108/setup-python@issue-1034
26
with:
27
python-version: ${{ matrix.python-version }}
28
- cache: 'pip'
29
- cache-dependency-path:
30
- requirements/*.txt
+ # cache: 'pip'
+ # cache-dependency-path:
+ # requirements/*.txt
31
32
-
+ - name: Cache pip dependencies
33
+ uses: actions/cache@v4
34
+ with:
35
+ path: ~/.cache/pip
36
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
37
+ restore-keys: |
38
+ ${{ runner.os }}-pip-
39
40
- name: Install dependencies
41
run: |
0 commit comments