Skip to content

Commit f0a1cdb

Browse files
committed
Another try
1 parent 1866f5d commit f0a1cdb

1 file changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/lint.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,17 @@ jobs:
1313
- uses: actions/checkout@v3
1414

1515
- name: Setup Python
16-
uses: actions/setup-python@v3
17-
with:
18-
python-version: '3.9'
19-
cache: pip
20-
cache-dependency-path: '**/requirements*.txt'
16+
uses: actions/setup-python@v3
17+
with:
18+
python-version: '3.9'
19+
20+
- name: Cache pip
21+
uses: actions/cache@v3
22+
with:
23+
path: ~/.cache/pip
24+
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
25+
restore-keys: |
26+
${{ runner.os }}-pip-
2127
2228
- name: Install pre-commit
2329
run: |

0 commit comments

Comments
 (0)