flat-tree/.drone.yml

25 lines
438 B
YAML
Raw Normal View History

2020-05-16 15:58:44 +00:00
---
2019-08-03 22:57:53 +00:00
matrix:
include:
2020-05-16 15:58:44 +00:00
- IMAGE: 3.6-stretch
TOXENV: py36
- IMAGE: 3.7-stretch
TOXENV: py37
- IMAGE: 3.8-buster
TOXENV: py38
- IMAGE: 3.8-buster
TOXENV: lint
- IMAGE: 3.8-buster
TOXENV: sort
- IMAGE: 3.8-buster
TOXENV: format
- IMAGE: 3.8-buster
TOXENV: type
2019-08-03 22:57:53 +00:00
2020-05-16 15:58:44 +00:00
pipeline:
build:
image: python:${IMAGE}
commands:
2020-05-16 16:15:47 +00:00
- pip install tox
2020-05-16 15:58:44 +00:00
- tox -e ${TOXENV}