From 7ce6abd3e7b1c3e752ebfbcaafe38ce5c2e8e9eb Mon Sep 17 00:00:00 2001 From: michael1986 Date: Thu, 27 Nov 2025 12:54:54 +0100 Subject: [PATCH] all --- .github/workflows/build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 40fd783..94c7006 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,18 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Install Maven + run: | + apt-get update + apt-get install -y maven + + - name: Set up Java 17 + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 17 + cache: maven + - name: Build with Maven run: mvn -B clean package