From 1c08319fb5f61532b8d246a51055337069076ce1 Mon Sep 17 00:00:00 2001 From: Konstantin Fickel Date: Sun, 12 Oct 2025 08:33:49 +0200 Subject: [PATCH] ci: add ruff to pipeline --- .forgejo/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index df5e5dc..b0a27f1 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -30,5 +30,8 @@ jobs: path: test-report.xml reporter: java-junit + - name: Check with Ruff + run: nix develop .#impure --command bash -c "uv run ruff check" + - name: Check with PyRight run: nix develop .#impure --command bash -c "uv run pyright"