Skip to content

Commit bc14b95

Browse files
committed
move continue-on-error
1 parent f7f9a8d commit bc14b95

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141

4242
static-code-analysis:
4343
runs-on: ubuntu-latest
44+
continue-on-error: true
4445
steps:
4546
- uses: actions/checkout@v2
4647
- name: Set up Python
@@ -53,23 +54,18 @@ jobs:
5354
pip install -e .
5455
pip install -r requirements-lint.txt
5556
- name: mypy 3.7
56-
continue-on-error: true
5757
run: |
5858
mypy --python-version 3.7 .
5959
- name: mypy 3.8
60-
continue-on-error: true
6160
run: |
6261
mypy --python-version 3.8 .
6362
- name: mypy 3.9
64-
continue-on-error: true
6563
run: |
6664
mypy --python-version 3.9 .
6765
- name: mypy 3.10
68-
continue-on-error: true
6966
run: |
7067
mypy --python-version 3.10 .
7168
- name: pylint
72-
continue-on-error: true
7369
run: |
7470
pylint --rcfile=.pylintrc \
7571
can/**.py \

0 commit comments

Comments
 (0)