py_hypercube/.drone.yml

16 lines
298 B
YAML
Raw Normal View History

kind: pipeline
name: lint
steps:
- name: markdown lint
image: pipelinecomponents/markdownlint:latest
commands:
- mdl .
- name: python lint
image: cytopia/pylint
commands:
2022-11-09 00:18:27 +01:00
- apk add --no-cache py3-pip
- pip3 install -r requirements.txt
- find . -type f -name "*.py" | xargs pylint