From 42de568eae792b5c156daae8c9530dc00815e8ea Mon Sep 17 00:00:00 2001 From: Username Date: Sun, 18 Jan 2026 17:50:48 +0100 Subject: [PATCH] ci: include style.py in lint checks --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index feba1e0..1d85bf3 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -28,10 +28,10 @@ jobs: run: pip install -q ruff - name: Syntax check - run: python -m py_compile gitea-ci.py + run: python -m py_compile gitea-ci.py style.py - name: Lint - run: ruff check gitea-ci.py + run: ruff check gitea-ci.py style.py - name: Test --help run: python gitea-ci.py --help