Typos: Run codespell on all files (#2328)

* Typos: Run codespell on all files

[`codespell`](https://pypi.org/project/codespell/) passes all files, not just these four.

* Discover typos in all non-XML files and the four XML files that this repo controls

* Update test_and_deploy.yml
This commit is contained in:
Christian Clauss
2025-08-14 01:23:19 +02:00
committed by GitHub
parent b27d03bffd
commit 115f1c8364
+8 -6
View File
@@ -34,12 +34,14 @@ jobs:
name: Find typos with codespell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pipx run codespell --ignore-words-list=ned
message_definitions/v1.0/all.xml
message_definitions/v1.0/common.xml
message_definitions/v1.0/minimal.xml
message_definitions/v1.0/standard.xml
- uses: actions/checkout@v5
- run: pipx install codespell
# Discover typos in all non-XML files and the four XML files that this repo controls
- run: codespell --skip="*.xml"
- run: codespell --ignore-words-list=ned message_definitions/v1.0/all.xml
message_definitions/v1.0/common.xml
message_definitions/v1.0/minimal.xml
message_definitions/v1.0/standard.xml
python-lint:
name: Lint Python code with ruff