Skip to content

Commit 15752db

Browse files
refactor: Update linting.yml.
1 parent 01db113 commit 15752db

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

.github/workflows/linting.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,11 @@ jobs:
1818
- name: Checkout code
1919
uses: actions/checkout@v4
2020

21-
- name: Set up Python
21+
- name: Set up Python with caching
2222
uses: actions/setup-python@v5
2323
with:
2424
python-version: '3.13'
25-
cache: 'no'
26-
27-
- name: Cache pip dependencies
28-
uses: actions/cache@v4
29-
with:
30-
path: ~/.cache/pip
31-
key: ${{ runner.os }}-pip-${{ matrix.tool }}-${{ hashFiles('**/requirements.txt') }}
32-
restore-keys: |
33-
${{ runner.os }}-pip-${{ matrix.tool }}-
34-
${{ runner.os }}-pip-
25+
cache: 'pip'
3526

3627
- name: Install dependencies
3728
run: |

0 commit comments

Comments
 (0)