From 8229d79370e8eabbaac3a559e3722aedc29e3977 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= Date: Thu, 6 Nov 2025 16:54:30 +0100 Subject: [PATCH] Add .drone.yml --- .drone.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..7018b5f --- /dev/null +++ b/.drone.yml @@ -0,0 +1,17 @@ +kind: pipeline +name: verify +platform: + os: linux + arch: arm64 + +trigger: + event: + - push + - pull_request + +steps: + # test if it compiles correctly + - name: build + image: maven:3-eclipse-temurin-21 + commands: + - mvn verify --no-transfer-progress -DskipTests=true -Dmaven.javadoc.skip=true -B -V