Bootstrap something to start

This commit is contained in:
Luke Murphy
2020-06-30 20:28:47 +02:00
parent 26caa797b2
commit 7dad478dda
11 changed files with 138 additions and 0 deletions

18
.drone.yml Normal file
View File

@ -0,0 +1,18 @@
---
matrix:
include:
- IMAGE: 3.8-buster
TOXENV: py38
- IMAGE: 3.8-buster
TOXENV: lint
- IMAGE: 3.8-buster
TOXENV: sort
- IMAGE: 3.8-buster
TOXENV: format
pipeline:
build:
image: python:${IMAGE}
commands:
- pip install tox
- tox -e ${TOXENV}