mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
CI: Add new "lint" stage with lint-codespell step to run codespell on gitlab CI
This commit is contained in:
parent
1f00174272
commit
fdaea8830f
1 changed files with 10 additions and 0 deletions
|
|
@ -11,6 +11,7 @@
|
||||||
# moment.
|
# moment.
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
|
- lint
|
||||||
- container
|
- container
|
||||||
- build
|
- build
|
||||||
|
|
||||||
|
|
@ -108,3 +109,12 @@ build-meson:
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build/
|
- build/
|
||||||
|
|
||||||
|
lint-codespell:
|
||||||
|
stage: lint
|
||||||
|
image: $UBUNTU_IMAGE
|
||||||
|
before_script:
|
||||||
|
- apt-get update && apt-get install -y python3-pip
|
||||||
|
- pip3 install codespell
|
||||||
|
script:
|
||||||
|
- codespell
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue