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