ci: gitlab: run a codespell stage on all *.c and *.h files

This commit is contained in:
Daniel Eklöf 2020-08-22 10:11:20 +02:00
parent 071cda1bd6
commit a41244a885
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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