ci: gitlab: run codespell in the 'build' stage

This makes it run in parallel with the compilation steps
This commit is contained in:
Daniel Eklöf 2020-08-22 10:14:10 +02:00
parent a41244a885
commit 9bedb98a0d
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -1,6 +1,5 @@
stages: stages:
- build - build
- codespell
variables: variables:
GIT_SUBMODULE_STRATEGY: normal GIT_SUBMODULE_STRATEGY: normal
@ -59,7 +58,7 @@ release-x86:
codespell: codespell:
image: alpine:edge image: alpine:edge
stage: codespell stage: build
script: script:
- apk add codespell - apk add codespell
- codespell *.c *.h - codespell *.c *.h