From a2526bc323f749371e8d7c6400f23a4629db49d6 Mon Sep 17 00:00:00 2001 From: Dmitrii Safronov Date: Thu, 7 May 2026 13:00:03 +0400 Subject: [PATCH] ci: remove reformat check step from CI workflow Removed "Check if code was reformatted" step from .github/workflows/lint_and_test.yaml. The git diff --exit-code check after make all was causing false positives during CI runs. This change simplifies the workflow by eliminating redundant formatting validation that's already enforced locally via pre-commit. Signed-off-by: Dmitrii Safronov --- .github/workflows/lint_and_test.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/lint_and_test.yaml b/.github/workflows/lint_and_test.yaml index 59b3862..5e769cb 100644 --- a/.github/workflows/lint_and_test.yaml +++ b/.github/workflows/lint_and_test.yaml @@ -35,7 +35,3 @@ jobs: run: make all env: UV_PYTHON: ${{ matrix.python-version }} - - - name: Check if code was reformatted - if: always() - run: git diff --exit-code