Skip to content

Commit 06a8b1f

Browse files
committed
Workaround 1
1 parent 8d33437 commit 06a8b1f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/python-app.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- issue-1021
77

8+
89
jobs:
910
Job-A:
1011
runs-on: ubuntu-latest
@@ -16,12 +17,14 @@ jobs:
1617
with:
1718
python-version: '3.10.10'
1819
cache: 'pip'
19-
20+
cache-dependency-path: 'backend/requirements/linter-requirements.txt'
21+
2022
- name: Run Mypy
2123
run: |
2224
pip install -r backend/requirements/linter-requirements.txt
2325
# mypy --config backend/mypy.ini backend
24-
26+
27+
2528

2629
Job-B:
2730
needs: Job-A
@@ -39,6 +42,9 @@ jobs:
3942
with:
4043
python-version: '3.10.10'
4144
cache: 'pip'
45+
cache-dependency-path: |
46+
backend/requirements/requirements.txt
47+
backend/requirements/dev-requirements.txt
4248
4349
- name: Install newly added packages
4450
run: |

0 commit comments

Comments
 (0)