ansible/.gitlab-ci.yml

21 lines
287 B
YAML

---
image: python:3.9
stages:
- lint
yamllint:
stage: lint
script:
- pip install yamllint==1.26.0
- yamllint -c .yamllint.yml .
allow_failure: true
ansible-lint:
stage: lint
script:
- pip install ansible-lint
- ansible-lint *.yml
allow_failure: true
...