Separate action for spellcheck

extensions
Volodymyr Shymanskyy 3 years ago
parent 38fc6dcb9e
commit 98b2751f18

@ -0,0 +1,5 @@
[codespell]
skip = ./test/wasi/brotli/alice29.txt,./test/.spec-*,./build*
quiet-level = 2
ignore-words-list = gameboy,iif,strng,woh

@ -567,7 +567,12 @@ jobs:
run: |
pip install pytest
pytest platforms/python
- name: Spellcheck
spellcheck:
runs-on: ubuntu-latest
- name: Install codespell
run: |
pip install codespell
codespell --ignore-words-list="gameboy,iif,panting,strng" --quiet-level=2 # --skip=""
- name: Spellcheck
run: |
codespell

Loading…
Cancel
Save