From 8b4c4d672838a7d479f78938314c7e99b2eea0f4 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 944db519..bff859fa 100644 --- a/.builds/alpine-x64.yml +++ b/.builds/alpine-x64.yml @@ -1,3 +1,4 @@ + image: alpine/edge packages: - musl-dev @@ -50,4 +51,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 41af846f..cf4b4adc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -77,4 +77,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