From a41244a8855ff474c39ea7e19f6790d2088fb188 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 22 Aug 2020 10:11:20 +0200 Subject: [PATCH] ci: gitlab: run a codespell stage on all *.c and *.h files --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dcda47d9..d9f4da25 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,6 @@ stages: - build + - codespell variables: GIT_SUBMODULE_STRATEGY: normal @@ -55,3 +56,10 @@ release-x86: - meson --buildtype=release ../../ - ninja -v -k0 - ninja -v test + +codespell: + image: alpine:edge + stage: codespell + script: + - apk add codespell + - codespell *.c *.h