Files
argclass/.drone.yml
Pavel Lutskov 6f37fb9585
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Test making CI/CD parallel
2021-09-12 12:19:07 +02:00

24 lines
390 B
YAML

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