From 18fc40520a3eaedc7c66f5b1eb845731b71e6d22 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 1 Nov 2024 17:43:15 +0000 Subject: [PATCH] [CI/Build] Move codespell to its own job Move `codespell` out of the `ruff` job because `codespell` checks more file types than `ruff`. This one needs to run on doc-only changes, whiel `ruff` does not. Signed-off-by: Russell Bryant --- .github/workflows/ruff.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml index 2cf5fc5263f28..ac9d439225503 100644 --- a/.github/workflows/ruff.yml +++ b/.github/workflows/ruff.yml @@ -42,9 +42,6 @@ jobs: run: | echo "::add-matcher::.github/workflows/matchers/ruff.json" ruff check --output-format github . - - name: Spelling check with codespell - run: | - codespell --toml pyproject.toml - name: Run isort run: | isort . --check-only