From 0122834c8fdc1b0b92c49f65c74d009889b5dc71 Mon Sep 17 00:00:00 2001 From: Aleksandr Meshchriakov Date: Mon, 2 Feb 2026 12:57:38 +0100 Subject: [PATCH] fix(ci): lint only src/ to match pre-commit config --- .gitea/workflows/ci-cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci-cd.yml b/.gitea/workflows/ci-cd.yml index bb8cdae..84b8a2a 100644 --- a/.gitea/workflows/ci-cd.yml +++ b/.gitea/workflows/ci-cd.yml @@ -40,13 +40,13 @@ jobs: run: | export PATH="$HOME/.local/bin:$PATH" source .venv/bin/activate - ruff check . + ruff check src/ - name: Run Ruff formatting check run: | export PATH="$HOME/.local/bin:$PATH" source .venv/bin/activate - ruff format . --check + ruff format src/ --check test: name: Run Tests