From fd95b0f3ae62d0b04b4d45a017e0387c2a058d90 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Tue, 18 Feb 2020 20:29:28 +0100 Subject: [PATCH] Inital drone config. Checks that it can install requirements with python v 3.6 & 3.8. --- .drone.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..198fd33 --- /dev/null +++ b/.drone.yml @@ -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 +