From 9bedb98a0dcd03f4a8751311522f24f16fce7e75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 22 Aug 2020 10:14:10 +0200 Subject: [PATCH] ci: gitlab: run codespell in the 'build' stage This makes it run in parallel with the compilation steps --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d9f4da25..b7214de3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,5 @@ stages: - build - - codespell variables: GIT_SUBMODULE_STRATEGY: normal @@ -59,7 +58,7 @@ release-x86: codespell: image: alpine:edge - stage: codespell + stage: build script: - apk add codespell - codespell *.c *.h