File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -14,17 +14,23 @@ jobs:
14
14
pip install -r requirements-dev.txt
15
15
- name : Lint with flake8
16
16
run : flake8 ./patterns --count --show-source --statistics
17
+ continue-on-error : true
17
18
- name : Format check with isort and black
18
19
run : |
19
20
isort --profile black --check ./patterns
20
21
black --check ./patterns
22
+ continue-on-error : true
21
23
- name : Type check with mypy
22
24
run : mypy --ignore-missing-imports ./patterns || true
25
+ continue-on-error : true
23
26
- name : Run tests with pytest
24
27
run : |
25
28
pytest ./patterns
26
29
pytest --doctest-modules ./patterns || true
30
+ continue-on-error : true
27
31
- name : Check Python version compatibility
28
32
run : shopt -s globstar && pyupgrade --py312-plus ./patterns/**/*.py
33
+ continue-on-error : true
29
34
- name : Run tox
30
35
run : tox
36
+ continue-on-error : true
You can’t perform that action at this time.
0 commit comments