File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 19
19
cache : " pip"
20
20
cache-dependency-path : |
21
21
**/*requirements*.txt
22
+
22
23
- name : Install apt deps
23
24
run : sudo apt-get update && sudo apt-get install -qq -y libxml2-dev libxslt1-dev
25
+
24
26
- name : Install dependencies
25
27
run : pip install -Ur requirements-dev.txt
28
+
26
29
- name : Test with mypy
27
- run : pre-commit run mypy --all
30
+ run : mypy --cobertura-xml-report . .
31
+
32
+ - uses : codecov/codecov-action@v4
33
+ with :
34
+ name : types
35
+ fail_ci_if_error : true
36
+ token : ${{ secrets.CODECOV_TOKEN }}
37
+ disable_search : true
38
+ file : cobertura.xml
39
+ flags : types
Original file line number Diff line number Diff line change @@ -65,3 +65,4 @@ config.json
65
65
.vagrant /
66
66
.mypy_cache /
67
67
.DS_Store
68
+ cobertura.xml
You can’t perform that action at this time.
0 commit comments