py_hypercube/.drone.yml
kleph abc4d1976c
Some checks failed
continuous-integration/drone/push Build is failing
Initial working port
2022-11-09 00:43:36 +01:00

15 lines
298 B
YAML

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