12 lines
173 B
YAML
12 lines
173 B
YAML
|
---
|
||
|
stages:
|
||
|
- lint
|
||
|
|
||
|
ansible-lint:
|
||
|
stage: lint
|
||
|
image: docker.io/library/fedora:33
|
||
|
before_script:
|
||
|
- dnf install -y ansible-lint
|
||
|
script:
|
||
|
- ansible-lint *.yml
|