Skip to content

Commit a29c3d5

Browse files
sfeltmanfracape
authored andcommitted
ci: Remove pip caching for static-analysis
Remove the pip cache from static analysis stage. This allows installation of the latest version of tooling for the stage and avoids discrepancies with stale requirements.txt.
1 parent 61292e5 commit a29c3d5

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

.github/workflows/static-analysis.yml

-9
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,6 @@ jobs:
1414
uses: actions/setup-python@v2
1515
with:
1616
python-version: ${{ matrix.python-version }}
17-
- name: Cache pip
18-
uses: actions/cache@v2
19-
if: ${{ !env.ACT }}
20-
with:
21-
path: ~/.cache/pip
22-
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
23-
restore-keys: |
24-
${{ runner.os }}-pip-
25-
${{ runner.os }}-
2617
- name: Install Python dependencies
2718
run: pip install -e .[dev]
2819
- name: Run static analysis checks

0 commit comments

Comments
 (0)