diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a951f49..a3c7522 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: run: python -m pip install mypy==1.13.0 - name: Execute mypy - run: make mypy + run: make mypy-ci test: needs: mypy diff --git a/Makefile b/Makefile index cab111f..7222c5a 100644 --- a/Makefile +++ b/Makefile @@ -42,3 +42,6 @@ push-tag: mypy: pdm run mypy src + +mypy-ci: + mypy src