From 41bbc0bf580b8286ebcd9be3f4818b7dc102946f Mon Sep 17 00:00:00 2001 From: Alexander Kalinovsky Date: Tue, 26 Aug 2025 20:23:41 +0300 Subject: [PATCH] fix: update MyPy command in CI workflow to check the entire project --- .gitea/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 1235787..c7bb0a1 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -37,7 +37,7 @@ jobs: uv run ruff format --check - name: MyPy run: | - uv run mypy src + uv run mypy . - name: Pytest run: | uv run pytest