From 0296ea501f8dedf45cb9886a676aff03faa59fa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B4=D1=80=D0=B5=D0=B9=20=D0=95=D0=BC=D0=B5?= =?UTF-8?q?=D0=BB=D1=8C=D1=8F=D0=BD=D0=B5=D0=BD=D0=BA=D0=BE?= Date: Thu, 3 Sep 2026 11:47:17 +0300 Subject: [PATCH] CI: auto-fix trailing newlines in ruff lint step --- .gitea/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7f02c6b..b4020a4 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -29,7 +29,9 @@ jobs: python -m pip install -e ".[dev]" - name: Lint (ruff) - run: ruff check src tests + run: | + ruff check --fix src tests + ruff check src tests - name: Typecheck (mypy) run: mypy src