From d827ea2375d9a3e81320ae457702c6d97753adbe Mon Sep 17 00:00:00 2001 From: Konstantin Fickel Date: Sun, 12 Oct 2025 10:13:11 +0200 Subject: [PATCH] ci: add ruff --- .forgejo/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index b0a27f1..a2377d6 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -19,6 +19,9 @@ jobs: - name: Install the project run: nix develop .#impure --command bash -c "uv sync --locked --all-extras --dev" + - name: Check with Ruff + run: nix develop .#impure --command bash -c "uv run ruff check" + - name: Test with PyTest run: nix develop .#impure --command bash -c "uv run pytest --junit-xml test-report.xml" @@ -30,8 +33,5 @@ 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"