ci: run codespell on README.md

This commit is contained in:
Daniel Eklöf 2020-12-26 13:04:40 +01:00
parent b679e8ce9a
commit 77ca2e8225
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ tasks:
- codespell: |
pip install codespell
cd yambar
~/.local/bin/codespell *.c *.h doc/*.scd
~/.local/bin/codespell README.md *.c *.h doc/*.scd
- setup: |
mkdir -p bld/debug bld/release bld/x11-only bld/wayland-only bld/plugs-are-shared
meson --buildtype=debug -Db_coverage=true yambar bld/debug

View file

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