14 lines
230 B
YAML
14 lines
230 B
YAML
|
kind: pipeline
|
||
|
name: lint
|
||
|
|
||
|
steps:
|
||
|
- name: markdown lint
|
||
|
image: pipelinecomponents/markdownlint:latest
|
||
|
commands:
|
||
|
- mdl .
|
||
|
|
||
|
- name: python lint
|
||
|
image: cytopia/pylint
|
||
|
commands:
|
||
|
- find . -type f -name "*.py" | xargs pylint
|