Inital drone config. Checks that it can install requirements with python v 3.6 & 3.8.

This commit is contained in:
2020-02-18 20:29:28 +01:00
parent 602047c3d9
commit fd95b0f3ae

28
.drone.yml Normal file
View File

@@ -0,0 +1,28 @@
---
kind: pipeline
type: docker
name: seasonedParser
platform:
os: linux
arch: amd64
steps:
- name: install-python3.6
image: python:3.6-alpine
commands:
- pip install -r requirements.txt
- name: install-python3.8
image: python:3.8-alpine
commands:
- pip install -r requirements.txt
trigger:
branch:
- master
event:
include:
- pull_request
- push