From 6dfa82e09206f477f83fd9f389f1bc5246b6dd8f Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 19:01:27 +0000 Subject: [PATCH] Fix CI: add linting with pip install ruff --- .gitea/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9476671..1d66a0f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,8 +14,16 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.11' - - name: Install and test + - name: Install dependencies run: | cd app pip install -e ".[dev]" + - name: Run tests + run: | + cd app pytest tests/ -v + - name: Run linting + run: | + cd app + pip install ruff + ruff check .