From 77ca2e8225de8b8841fb5d835d0d8f94b85715b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 26 Dec 2020 13:04:40 +0100 Subject: [PATCH] ci: run codespell on README.md --- .builds/alpine-x64.yml | 2 +- .gitlab-ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.builds/alpine-x64.yml b/.builds/alpine-x64.yml index 7ae7f1b..0a40bd2 100644 --- a/.builds/alpine-x64.yml +++ b/.builds/alpine-x64.yml @@ -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 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 586e79c..88d1fbe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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