From 7088d2ee91fa8019fc8e1772a3c8c84a3bd59ba7 Mon Sep 17 00:00:00 2001 From: Lars Kruse Date: Fri, 2 May 2025 12:40:33 +0200 Subject: [PATCH] ci: enable spelling checks (via codespell) --- .github/workflows/check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 16be3910732..3eeb062da16 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -41,9 +41,9 @@ jobs: echo "::add-matcher::nuttx/.github/nxstyle.json" python3 -m venv .venv source .venv/bin/activate - pip install cmake-format black isort flake8 + pip install codespell cmake-format black isort flake8 cd nuttx commits="${{ github.event.pull_request.base.sha }}..HEAD" git log --oneline $commits - echo "../nuttx/tools/checkpatch.sh -u -m -g $commits" - ../nuttx/tools/checkpatch.sh -u -m -g $commits + echo "../nuttx/tools/checkpatch.sh -c -u -m -g $commits" + ../nuttx/tools/checkpatch.sh -c -u -m -g $commits