sumpfralle commented on code in PR #16302:
URL: https://github.com/apache/nuttx/pull/16302#discussion_r2072313329
##########
.github/workflows/check.yml:
##########
@@ -41,9 +41,11 @@ 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 "Running codespell for changed files (see .codespellrc)"
+ ../nuttx/tools/checkpatch.sh -c -g $commits
Review Comment:
I intended to display a visible reference to the name of the configuration
file (easing the process of dealing with false positives). But the codespell
call already emits the configuration file location. Thus, I will merge these.
Thanks for the pointer!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]