We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01db113 commit 15752dbCopy full SHA for 15752db
.github/workflows/linting.yml
@@ -18,20 +18,11 @@ jobs:
18
- name: Checkout code
19
uses: actions/checkout@v4
20
21
- - name: Set up Python
+ - name: Set up Python with caching
22
uses: actions/setup-python@v5
23
with:
24
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-
+ cache: 'pip'
35
36
- name: Install dependencies
37
run: |
0 commit comments