From 02d79e67276443830285b1902a96949568930f4f Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Thu, 21 May 2026 12:03:46 -0700 Subject: [PATCH] fix(ci): install ruff before lint step ruff is not in requirements.txt (dev-only tool) so the CI runner couldn't find it. Install explicitly in the workflow. --- .forgejo/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 9f70b2e..dcb0b48 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -29,6 +29,9 @@ jobs: - name: Install dependencies run: pip install -r requirements.txt + - name: Install lint tools + run: pip install ruff + - name: Lint run: ruff check .