py_hypercube/.drone.yml
kleph 5147a17a0b
All checks were successful
continuous-integration/drone/push Build is passing
[CI] Update ruff command
2024-09-06 20:29:21 +02:00

21 lines
420 B
YAML

kind: pipeline
name: lint
steps:
- name: markdown lint
image: pipelinecomponents/markdownlint:latest
commands:
- mdl .
- name: python lint with ruff
image: pipelinecomponents/ruff
commands:
- ruff check py_hypercube.py
#- name: python lint
# image: cytopia/pylint
# commands:
# - apk add --no-cache py3-pip
# - pip3 install -r requirements.txt || true
# - find . -type f -name "*.py" | xargs pylint