35c62d906b
Signed-off-by: Yohann D'ANELLO <yohann.danello@gmail.com>
20 lines
307 B
YAML
20 lines
307 B
YAML
---
|
|
image: python:3.9-alpine
|
|
|
|
stages:
|
|
- lint
|
|
|
|
yamllint:
|
|
stage: lint
|
|
script:
|
|
- pip install yamllint==1.25.0
|
|
- yamllint -c .yamllint.yml .
|
|
|
|
ansible-lint:
|
|
stage: lint
|
|
script:
|
|
- apk add gcc libc-dev libffi-dev openssl-dev
|
|
- pip install ansible-lint==4.3.7
|
|
- ansible-lint *.yml
|
|
...
|