We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9bb468 commit c53a9b0Copy full SHA for c53a9b0
.github/workflows/ci-lint.yml
@@ -28,8 +28,9 @@ jobs:
28
poetry run pre-commit run ruff-format
29
- name: Execute mypy
30
run: |
31
- poetry run mypy --config-file pyproject.toml core | tee mypy.log
+ poetry run mypy --config-file pyproject.toml core | tee mypy.log || true
32
- name: Generate mypy report
33
+ continue-on-error: true
34
35
if [ -s mypy.log ]; then
36
echo "Mypy issues found. Generating report...";
0 commit comments