From 81ed3044a4ee817a63ef7452ba670b95c844bee7 Mon Sep 17 00:00:00 2001 From: Leon Dumestre Date: Tue, 6 Feb 2024 10:00:09 +0100 Subject: [PATCH] ci: test jdk --- .github/workflows/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9edd95e..c44100c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,6 +24,13 @@ jobs: needs: install runs-on: ubuntu-22.04 steps: + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: 17 + distribution: 'temurin' + architecture: x64 + - name: Build and test with Maven run: cd TP1/backend && mvn clean verify