Files
argclass/.drone.yml
Pavel Lutskov ed5bc39beb
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
Test adding black to CI/CD
2021-09-12 11:52:27 +02:00

20 lines
330 B
YAML

kind: pipeline
type: docker
name: test
steps:
- name: test-python-3.8
image: python:3.8-slim
commands:
- python test.py
- name: test-python-3.9
image: python:3.9-slim
commands:
- python test.py
- name: black
image: pyfound/black:21.7b0
commands:
- black --check --diff --quiet .