py_hypercube/.drone.yml

22 lines
414 B
YAML
Raw Normal View History

kind: pipeline
name: lint
steps:
- name: markdown lint
image: pipelinecomponents/markdownlint:latest
commands:
- mdl .
2024-01-04 05:32:21 +01:00
- name: python lint with ruff
image: pipelinecomponents/ruff
commands:
2024-01-04 05:32:21 +01:00
- 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