ci: check spelling via codespell
Use the github action[1] provided by the codespell project to check the spelling on every PR. [1] https://github.com/codespell-project/actions-codespell
This commit is contained in:
parent
cbcb335b3e
commit
2902d0945b
1 changed files with 10 additions and 0 deletions
10
.github/workflows/tests.yml
vendored
10
.github/workflows/tests.yml
vendored
|
|
@ -94,3 +94,13 @@ jobs:
|
|||
run: |
|
||||
make --always-make test-data
|
||||
git diff --exit-code -- ./test/data
|
||||
|
||||
codespell:
|
||||
name: "Spell check"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: codespell-project/actions-codespell@master
|
||||
with:
|
||||
ignore_words_list: msdos
|
||||
skip: ./.git,coverity,rpmbuild,samples
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue