15 lines
229 B
YAML
15 lines
229 B
YAML
---
|
|
kind: pipeline
|
|
name: lint
|
|
|
|
steps:
|
|
- name: python lint with ruff
|
|
image: pipelinecomponents/ruff
|
|
commands:
|
|
- ruff .
|
|
|
|
- name: python lint
|
|
image: cytopia/pylint
|
|
commands:
|
|
- find . -type f -name "*.py" | xargs pylint
|
|
|