13 lines
158 B
YAML
13 lines
158 B
YAML
stages:
|
|
- lint
|
|
|
|
yamllint:
|
|
stage: lint
|
|
image: python:3.12-alpine
|
|
before_script:
|
|
- pip install --no-cache-dir yamllint
|
|
script:
|
|
- yamllint .
|
|
|
|
|