From e10a5d7b2e20ca5db03a7e869c312f1db7e5a92a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20Er=C5=91s?= Date: Sat, 23 Dec 2023 16:47:35 +0100 Subject: [PATCH] workflow updates --- .github/workflows/maven.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 4033acb..9e8336c 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -24,7 +24,7 @@ jobs: cache: 'maven' - name: Test with Maven - run: mvn -B verify -Dgroups='!acceptance' + run: mvn -B verify build-unittest: name: Unit Test with Java ${{ matrix.jdk }} runs-on: ubuntu-latest @@ -34,5 +34,15 @@ jobs: jdk: ['8', '11', '17', '21' ] steps: + - uses: actions/checkout@v4 + - name: Checkout submodules + run: git submodule update --init --recursive + + - name: Set up JDK ${{ matrix.jdk }} + uses: actions/setup-java@v4 + with: + distribution: zulu + java-version: ${{ matrix.jdk }} + cache: 'maven' - name: Test with Maven - run: mvn -B verify \ No newline at end of file + run: mvn -B verify -Dgroups='!acceptance' \ No newline at end of file