Skip to content

Commit c53a9b0

Browse files
committed
more report fixes
1 parent f9bb468 commit c53a9b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci-lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ jobs:
2828
poetry run pre-commit run ruff-format
2929
- name: Execute mypy
3030
run: |
31-
poetry run mypy --config-file pyproject.toml core | tee mypy.log
31+
poetry run mypy --config-file pyproject.toml core | tee mypy.log || true
3232
- name: Generate mypy report
33+
continue-on-error: true
3334
run: |
3435
if [ -s mypy.log ]; then
3536
echo "Mypy issues found. Generating report...";

0 commit comments

Comments
 (0)