From 8147d3a93721506a05c9b82659705002b7b3253c Mon Sep 17 00:00:00 2001 From: Nick Slowinski Date: Mon, 26 Jun 2023 12:15:24 +0200 Subject: [PATCH] add drone config --- .drone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..2a9fd7c --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +name: amd64 +kind: pipeline +type: docker + +platform: + os: linux + arch: amd64 + +steps: +- name: build + image: registry.access.redhat.com/ubi9/python-311:1-12 + commands: + - pip install -r requirements.txt + - mkdocs build \ No newline at end of file