backup-tool/.woodpecker.yml

36 lines
766 B
YAML
Raw Normal View History

2021-04-24 19:39:49 +02:00
pipeline:
# TODO add config for all other versions
2021-04-24 22:22:12 +02:00
test-3.9:
image: python:3.9-alpine
2021-04-24 19:39:49 +02:00
pull: true
commands:
- pip install -e .[dev]
- tox -e py39
2021-04-24 22:22:12 +02:00
test-3.8:
image: python:3.8-alpine
pull: true
commands:
- pip install -e .[dev]
- tox -e py38
test-3.7:
image: python:3.7-alpine
pull: true
commands:
- pip install -e .[dev]
- tox -e py37
test-3.6:
image: python:3.6-alpine
pull: true
commands:
- pip install -e .[dev]
- tox -e py36
lint:
image: python:3.6-alpine
commands:
- pip install -e .[dev]
- tox -e lint