advent_of_code/.drone.yml
2024-12-05 18:28:12 +01:00

15 lines
233 B
YAML

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