2021-04-22 08:38:50 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: lint
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: ansible linting
|
|
|
|
image: cytopia/ansible-lint
|
|
|
|
|
|
|
|
commands:
|
2021-04-22 09:03:03 +00:00
|
|
|
- ansible-lint tasks/main.yml
|
2021-04-22 08:38:50 +00:00
|
|
|
- name: markdown linting
|
|
|
|
image: 06kellyjac/markdownlint-cli
|
|
|
|
commands:
|
|
|
|
- markdownlint .
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|