ci: run codespell on the man pages

This commit is contained in:
Daniel Eklöf 2020-12-26 13:00:00 +01:00
parent 9cf00f8200
commit 761f2e0b21
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: | - codespell: |
pip install codespell pip install codespell
cd yambar cd yambar
~/.local/bin/codespell *.c *.h ~/.local/bin/codespell *.c *.h doc/*.scd
- setup: | - setup: |
mkdir -p bld/debug bld/release bld/x11-only bld/wayland-only bld/plugs-are-shared 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 meson --buildtype=debug -Db_coverage=true yambar bld/debug

View file

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