Test making CI/CD parallel
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
2021-09-12 12:19:07 +02:00
parent f93588f4bf
commit 6f37fb9585

View File

@@ -3,17 +3,21 @@ type: docker
name: test name: test
steps: steps:
- name: black
image: pyfound/black:21.7b0
commands:
- black --check --diff --quiet .
- name: test-python-3.8 - name: test-python-3.8
image: python:3.8-slim image: python:3.8-slim
commands: commands:
- python test.py - python test.py
depends_on:
- black
- name: test-python-3.9 - name: test-python-3.9
image: python:3.9-slim image: python:3.9-slim
commands: commands:
- python test.py - python test.py
depends_on:
- name: black - black
image: pyfound/black:21.7b0
commands:
- black --check --diff --quiet .