diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3597ddc..d78d260 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,11 @@ jobs: qodana: runs-on: ubuntu-latest steps: + - name: "Set up JDK 17" + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' - name: "Cache Maven Repos" uses: actions/cache@v4 with: @@ -24,6 +29,8 @@ jobs: uses: JetBrains/qodana-action@v2024.1 env: QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} + - name: "Print maven version" + run: mvn -version - name: Build with Maven run: mvn clean test - name: Upload test results to Codecov