From e7b2dcb6197bf37410248bf0d5d1518604c73412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 26 Dec 2020 13:08:03 +0100 Subject: [PATCH] ci: run codespell on README/INSTALL/CHANGELOG --- .builds/alpine-x64.yml | 3 ++- .gitlab-ci.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.builds/alpine-x64.yml b/.builds/alpine-x64.yml index 6b2756bd..be5bb0d3 100644 --- a/.builds/alpine-x64.yml +++ b/.builds/alpine-x64.yml @@ -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 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ffd26443..add26132 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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