Skip to content

Commit 01db113

Browse files
refactor: Update linting.yml.
1 parent 57913b1 commit 01db113

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/linting.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,16 @@ jobs:
2222
uses: actions/setup-python@v5
2323
with:
2424
python-version: '3.13'
25-
cache: 'pip'
25+
cache: 'no'
2626

27-
- name: Cache dependencies
27+
- name: Cache pip dependencies
2828
uses: actions/cache@v4
2929
with:
3030
path: ~/.cache/pip
31-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
31+
key: ${{ runner.os }}-pip-${{ matrix.tool }}-${{ hashFiles('**/requirements.txt') }}
32+
restore-keys: |
33+
${{ runner.os }}-pip-${{ matrix.tool }}-
34+
${{ runner.os }}-pip-
3235
3336
- name: Install dependencies
3437
run: |

0 commit comments

Comments
 (0)