This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git

commit b1fcf5041056eda27cc4a4a6fd0e6613502cd973
Author: Lars Kruse <de...@sumpfralle.de>
AuthorDate: Fri May 2 12:40:33 2025 +0200

    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 a83c388c2..6f007e52f 100644
--- a/.github/workflows/check.yml
+++ b/.github/workflows/check.yml
@@ -46,9 +46,9 @@ jobs:
           echo "::add-matcher::nuttx/.github/nxstyle.json"
           python3 -m venv .venv
           source .venv/bin/activate
-          pip install cmake-format black isort flake8 cvt2utf
+          pip install codespell cmake-format black isort flake8 cvt2utf
           cd apps
           commits="${{ github.event.pull_request.base.sha }}..HEAD"
           git log --oneline $commits
-          echo "../nuttx/tools/checkpatch.sh -m -g $commits"
-          ../nuttx/tools/checkpatch.sh -m -g $commits
+          echo "../nuttx/tools/checkpatch.sh -c -u -m -g $commits"
+          ../nuttx/tools/checkpatch.sh -c -u -m -g $commits

Reply via email to