ci: run codespell on README/INSTALL/CHANGELOG

This commit is contained in:
Daniel Eklöf 2020-12-26 13:08:03 +01:00
parent 7a2084f2c2
commit e7b2dcb619
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 3 additions and 2 deletions

View file

@ -1,3 +1,4 @@
image: alpine/edge
packages:
- musl-dev
@ -44,4 +45,4 @@ tasks:
- codespell: |
pip install codespell
cd foot
~/.local/bin/codespell *.c *.h doc/*.scd
~/.local/bin/codespell README.md INSTALL.md CHANGELOG.md *.c *.h doc/*.scd

View file

@ -73,4 +73,4 @@ codespell:
- apk add python3
- apk add py3-pip
- pip install codespell
- codespell *.c *.h doc/*.scd
- codespell README.md INSTALL.md CHANGELOG.md *.c *.h doc/*.scd