We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d33437 commit 06a8b1fCopy full SHA for 06a8b1f
.github/workflows/python-app.yml
@@ -5,6 +5,7 @@ on:
5
branches:
6
- issue-1021
7
8
+
9
jobs:
10
Job-A:
11
runs-on: ubuntu-latest
@@ -16,12 +17,14 @@ jobs:
16
17
with:
18
python-version: '3.10.10'
19
cache: 'pip'
-
20
+ cache-dependency-path: 'backend/requirements/linter-requirements.txt'
21
22
- name: Run Mypy
23
run: |
24
pip install -r backend/requirements/linter-requirements.txt
25
# mypy --config backend/mypy.ini backend
26
27
28
29
Job-B:
30
needs: Job-A
@@ -39,6 +42,9 @@ jobs:
39
42
40
43
41
44
45
+ cache-dependency-path: |
46
+ backend/requirements/requirements.txt
47
+ backend/requirements/dev-requirements.txt
48
49
- name: Install newly added packages
50
0 commit comments