From ce75fcd0e199a403e019302f91f79bca13a4bc95 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 20:50:58 +0000 Subject: [PATCH 1/2] Initial plan From 55ecdca6af4e40ddf2360916310c09ef33c7f62f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 20:52:35 +0000 Subject: [PATCH 2/2] fix(ci): remove invalid --fix flag from ruff format in CI Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- .github/workflows/ci.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c7f300a..be8c1e77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,11 +43,16 @@ jobs: - name: Install Ruff run: pip install ruff - - name: Run Ruff Check - run: ruff check --fix app/ tests/ + - name: Show Ruff version (debug) + run: ruff --version - - name: Run Ruff Format - run: ruff format --fix --check app/ tests/ + - name: Run Ruff Lint (check) + # ruff check can --fix locally, but CI should only check (no modifications) + run: ruff check app/ tests/ + + - name: Run Ruff Format check + # ruff format only supports --check; do not pass --fix here + run: ruff format --check app/ tests/ # ══════════════════════════════════════════════════════════════════════════ # Stage 2: Tests & Type Checking (run in parallel after lint passes)