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:
1414 pip install -r requirements-dev.txt
1515 - name : Lint with flake8
1616 run : flake8 ./patterns --count --show-source --statistics
17+ continue-on-error : true
1718 - name : Format check with isort and black
1819 run : |
1920 isort --profile black --check ./patterns
2021 black --check ./patterns
22+ continue-on-error : true
2123 - name : Type check with mypy
2224 run : mypy --ignore-missing-imports ./patterns || true
25+ continue-on-error : true
2326 - name : Run tests with pytest
2427 run : |
2528 pytest ./patterns
2629 pytest --doctest-modules ./patterns || true
30+ continue-on-error : true
2731 - name : Check Python version compatibility
2832 run : shopt -s globstar && pyupgrade --py312-plus ./patterns/**/*.py
33+ continue-on-error : true
2934 - name : Run tox
3035 run : tox
36+ continue-on-error : true
You can’t perform that action at this time.
0 commit comments