test-ci/.woodpecker.yml

24 lines
413 B
YAML

pipeline:
test-python1:
group: mygroup
image: python:${PYTHON_VERSION}
commands:
- sleep 10
- python -V
- exit 1
test-python2:
group: mygroup
image: python:${PYTHON_VERSION}
commands:
- sleep 20
- python -V
test-python3:
image: python:${PYTHON_VERSION}
commands:
- sleep 20
- python -V
matrix:
PYTHON_VERSION:
- 3.7
- 3.10