From e2c2f48203b5cb9e7ca74b45976ec27089a2af78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 26 Dec 2020 13:08:42 +0100 Subject: [PATCH] ci: run codespell on CHANGELOG.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 0a40bd2..1e8961a 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 README.md *.c *.h doc/*.scd + ~/.local/bin/codespell README.md CHANGELOG.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 88d1fbe..e9446a6 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 README.md *.c *.h doc/*.scd + - codespell README.md CHANGELOG.md *.c *.h doc/*.scd