We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1866f5d commit f0a1cdbCopy full SHA for f0a1cdb
1 file changed
.github/workflows/lint.yml
@@ -13,11 +13,17 @@ jobs:
13
- uses: actions/checkout@v3
14
15
- 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'
+ uses: actions/setup-python@v3
+ with:
+ python-version: '3.9'
+
+ - name: Cache pip
21
+ uses: actions/cache@v3
22
23
+ path: ~/.cache/pip
24
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
25
+ restore-keys: |
26
+ ${{ runner.os }}-pip-
27
28
- name: Install pre-commit
29
run: |
0 commit comments