Files
argclass/.drone.yml
Pavel Lutskov 326e1bbfa0
All checks were successful
continuous-integration/drone/push Build is passing
Run unittests after code style and lint (#2)
Reviewed-on: https://git.deguo.duckdns.org/pavel/argclass/pulls/2
Co-authored-by: Pavel Lutskov <pavel.lutskov@gmail.com>
Co-committed-by: Pavel Lutskov <pavel.lutskov@gmail.com>
2021-09-12 12:27:52 +02:00

25 lines
409 B
YAML

kind: pipeline
type: docker
name: test
steps:
- name: black
image: pyfound/black:21.7b0
commands:
- black --check --diff --quiet .
depends_on: []
- 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