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