From 0ded0b706919896e79bb43f3733f84d22889302d Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Wed, 25 Mar 2026 17:14:13 -0500 Subject: [PATCH] chore: ci --- .github/workflows/format-backend.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/format-backend.yaml b/.github/workflows/format-backend.yaml index 562e6aa1c1..c519db7558 100644 --- a/.github/workflows/format-backend.yaml +++ b/.github/workflows/format-backend.yaml @@ -40,10 +40,10 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install black + pip install "ruff>=0.15.5" - - name: Format backend - run: npm run format:backend + - name: Ruff format check + run: ruff format --check . --exclude .venv --exclude venv - - name: Check for changes after format - run: git diff --exit-code + - name: Ruff lint + run: ruff check . --exclude .venv --exclude venv