From f3c5d77ad50c9b158e5f49afd9ed840135413830 Mon Sep 17 00:00:00 2001 From: -LAN- Date: Sun, 31 Aug 2025 17:01:19 +0800 Subject: [PATCH] chore: remove duplicate Python style checks handled by autofix CI (#24833) --- .github/workflows/style.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 7cd43d2a97..b6c9131c08 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -44,21 +44,10 @@ jobs: if: steps.changed-files.outputs.any_changed == 'true' run: uv sync --project api --dev - - name: Ruff check - if: steps.changed-files.outputs.any_changed == 'true' - run: | - uv run --directory api ruff --version - uv run --directory api ruff check ./ - uv run --directory api ruff format --check ./ - - name: Dotenv check if: steps.changed-files.outputs.any_changed == 'true' run: uv run --project api dotenv-linter ./api/.env.example ./web/.env.example - - name: Lint hints - if: failure() - run: echo "Please run 'dev/reformat' to fix the fixable linting errors." - web-style: name: Web Style runs-on: ubuntu-latest