py_hypercube/.drone.yml
kleph 74fe3c6a58
All checks were successful
continuous-integration/drone/push Build is passing
[CI] Test ruff linter
2024-01-04 05:45:31 +01:00

21 lines
414 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 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