ansible/.gitlab-ci.yml
Hadrien Patte b49bd3620b
Feat: add ansible-lint to the CI pipeline
Signed-off-by: Hadrien Patte <hadrien.patte@protonmail.com>
2019-03-03 19:06:33 +01:00

15 lines
184 B
YAML

---
image: quay.io/ansible/molecule:2.19
stages:
- lint
yamllint:
stage: lint
script: yamllint -c .yamllint.yml .
ansible-lint:
stage: lint
script: ansible-lint *.yml
...