advent_of_code/.drone.yml

16 lines
229 B
YAML
Raw Permalink Normal View History

2021-12-10 14:48:39 +01:00
---
kind: pipeline
name: lint
steps:
2023-12-01 18:36:10 +01:00
- name: python lint with ruff
image: pipelinecomponents/ruff
commands:
- ruff .
2021-12-10 14:48:39 +01:00
- name: python lint
image: cytopia/pylint
commands:
2021-12-10 14:48:39 +01:00
- find . -type f -name "*.py" | xargs pylint
2023-12-01 18:36:10 +01:00