17 lines
348 B
YAML
17 lines
348 B
YAML
---
|
|
include:
|
|
- template: Security/Secret-Detection.gitlab-ci.yml
|
|
|
|
image: registry.git.saibotk.de/saibotk.de/infrastructure-ci-container:latest
|
|
|
|
stages:
|
|
- lint
|
|
- test
|
|
|
|
ansible-lint:
|
|
stage: lint
|
|
script:
|
|
- ansible-lint -f codeclimate *.yml > ansible-lint-report.json
|
|
artifacts:
|
|
reports:
|
|
codequality: ansible-lint-report.json
|