We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57913b1 commit 01db113Copy full SHA for 01db113
.github/workflows/linting.yml
@@ -22,13 +22,16 @@ jobs:
22
uses: actions/setup-python@v5
23
with:
24
python-version: '3.13'
25
- cache: 'pip'
+ cache: 'no'
26
27
- - name: Cache dependencies
+ - name: Cache pip dependencies
28
uses: actions/cache@v4
29
30
path: ~/.cache/pip
31
- key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
+ key: ${{ runner.os }}-pip-${{ matrix.tool }}-${{ hashFiles('**/requirements.txt') }}
32
+ restore-keys: |
33
+ ${{ runner.os }}-pip-${{ matrix.tool }}-
34
+ ${{ runner.os }}-pip-
35
36
- name: Install dependencies
37
run: |
0 commit comments