docker/.drone.yml

20 lines
323 B
YAML
Raw Permalink Normal View History

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