Get CI working with Drone
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2020-04-24 13:04:35 +02:00
parent 3a8920ce95
commit 7528a16dce
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
4 changed files with 21 additions and 1 deletions

18
.drone.yml Normal file
View File

@ -0,0 +1,18 @@
---
matrix:
include:
- IMAGE: 3.8-buster
TOXENV: linters
- IMAGE: 3.8-buster
TOXENV: packaging
- IMAGE: 3.8-buster
TOXENV: py38
pipeline:
build:
image: python:${IMAGE}
commands:
- pip install tox==3.14.6
- tox -e ${TOXENV}

1
.github/labels.yml vendored
View File

@ -1,3 +1,4 @@
---
# Format and labels used aim to match those used by Ansible project
# https://github.com/marketplace/actions/github-labeler
- name: bug

View File

@ -1,3 +1,4 @@
---
categories:
- title: 'Features'
labels:

View File

@ -4,7 +4,7 @@ minversion = 3.14.0
envlist =
linters
packaging
py{37}
py{38}
devel
skipsdist = True