From cc2f71932e2da096c4cfdfcfba480b8c283827d0 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 23:42:22 +0000 Subject: [PATCH] fix: add mypy type checking to CI workflow --- .gitea/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 18b2be1..6cd2e96 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -31,6 +31,12 @@ jobs: - name: Run linting run: ruff check src/ tests/ + - name: Install type checker + run: pip install mypy + + - name: Run type checking + run: mypy src/ tests/ + build: needs: test runs-on: ubuntu-latest