diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4cf864e..5af274e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,14 @@ --- 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 ...