File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 41
41
42
42
static-code-analysis :
43
43
runs-on : ubuntu-latest
44
+ continue-on-error : true
44
45
steps :
45
46
- uses : actions/checkout@v2
46
47
- name : Set up Python
@@ -53,23 +54,18 @@ jobs:
53
54
pip install -e .
54
55
pip install -r requirements-lint.txt
55
56
- name : mypy 3.7
56
- continue-on-error : true
57
57
run : |
58
58
mypy --python-version 3.7 .
59
59
- name : mypy 3.8
60
- continue-on-error : true
61
60
run : |
62
61
mypy --python-version 3.8 .
63
62
- name : mypy 3.9
64
- continue-on-error : true
65
63
run : |
66
64
mypy --python-version 3.9 .
67
65
- name : mypy 3.10
68
- continue-on-error : true
69
66
run : |
70
67
mypy --python-version 3.10 .
71
68
- name : pylint
72
- continue-on-error : true
73
69
run : |
74
70
pylint --rcfile=.pylintrc \
75
71
can/**.py \
You can’t perform that action at this time.
0 commit comments