From f15d9a5f2fb746b3a91f6af9d0af3c3d9172ef48 Mon Sep 17 00:00:00 2001 From: Aditya Gidh Date: Thu, 6 Mar 2025 11:09:00 -0500 Subject: [PATCH] update workflow to continue to the next steps if mypy fails Signed-off-by: Aditya Gidh --- .github/workflows/py_main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/py_main.yml b/.github/workflows/py_main.yml index 42bb2875..870ce603 100644 --- a/.github/workflows/py_main.yml +++ b/.github/workflows/py_main.yml @@ -36,6 +36,7 @@ jobs: run: poetry run poe lint - name: Type check task with mypy run: poetry run poe type-check + continue-on-error: true - name: Code Format run: poetry run poe format - name: Commits Lint