From bef3c2ab4a0147b20be85d023a612e9bf6eabd73 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 21:17:46 +0000 Subject: [PATCH] Fix CI: install ruff and mypy before running checks --- .gitea/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1811e3d..3665eab 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: - name: Install dependencies run: | pip install -e ".[dev]" + pip install ruff mypy - name: Run linting run: ruff check src/ @@ -53,4 +54,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: dist - path: dist/* \ No newline at end of file + path: dist/ \ No newline at end of file