13 lines
192 B
YAML
13 lines
192 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: lint
|
||
|
image: python
|
||
|
commands:
|
||
|
- pip install yamllint
|
||
|
- pip install ansible-lint
|
||
|
- yamllint .
|
||
|
- ansible-lint .
|