From dbf91bb4eec1d90159194fe8821435db9497674b Mon Sep 17 00:00:00 2001 From: Nikolay Tatarinov Date: Wed, 18 Feb 2026 13:16:49 +0300 Subject: [PATCH] Update CI workflow to specify source directory for linting - Modified the CI configuration in `ci.yml` to change the linting command from checking the entire `src` directory to specifically targeting the `duty_teller` package and `tests`. - This change enhances the accuracy of linting by focusing on relevant code areas, improving code quality checks during the CI process. --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c0a6fed..9e7f50f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - name: Lint with Ruff run: | - ruff check src tests + ruff check duty_teller tests - name: Run tests env: