Separate action for spellcheck

This commit is contained in:
Volodymyr Shymanskyy
2021-03-18 23:10:41 +02:00
parent 38fc6dcb9e
commit 98b2751f18
2 changed files with 12 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
[codespell]
skip = ./test/wasi/brotli/alice29.txt,./test/.spec-*,./build*
quiet-level = 2
ignore-words-list = gameboy,iif,strng,woh
+7 -2
View File
@@ -567,7 +567,12 @@ jobs:
run: | run: |
pip install pytest pip install pytest
pytest platforms/python pytest platforms/python
- name: Spellcheck
spellcheck:
runs-on: ubuntu-latest
- name: Install codespell
run: | run: |
pip install codespell pip install codespell
codespell --ignore-words-list="gameboy,iif,panting,strng" --quiet-level=2 # --skip="" - name: Spellcheck
run: |
codespell