From a7dbac8ef63d2d5b35658b227d46d5972cb3ba50 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Thu, 9 Nov 2023 00:36:05 +0100 Subject: [PATCH] Setup CI. Verify nginx config --- .drone.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..46f8a2c --- /dev/null +++ b/.drone.yml @@ -0,0 +1,15 @@ +--- +kind: pipeline +type: docker +name: Verify + +platform: + os: linux + arch: amd64 + +steps: + - name: Verify nginx confiy + image: nginx:1.25-bookworm + commands: + - nginx -t +