borgmatic/.drone.yml

19 lines
303 B
YAML
Raw Normal View History

2018-10-01 05:09:53 +00:00
pipeline:
build:
image: python:${PYTHON_VERSION}-alpine${ALPINE_VERSION}
2018-10-04 02:35:42 +00:00
pull: true
2018-10-01 05:09:53 +00:00
commands:
2018-10-01 05:47:07 +00:00
- pip install tox
2018-10-01 05:09:53 +00:00
- tox
- apk add --no-cache borgbackup
- tox -e end-to-end
matrix:
ALPINE_VERSION:
- 3.7
- 3.8
PYTHON_VERSION:
- 3.5
- 3.6
- 3.7