From 01c6cb9c72b51571ac6ffb31b0abe3442fa3b7fa Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Sat, 5 Feb 2022 18:32:13 +0100 Subject: [PATCH] Add Java 11 to the CI, for #80 --- .github/workflows/maven.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 51edda29..6c5cba63 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -11,6 +11,9 @@ on: jobs: build: + strategy: + matrix: + java: [ 8, 11 ] runs-on: ubuntu-latest @@ -27,10 +30,10 @@ jobs: path: tooling/sweble-wikitext fetch-depth: 0 - - name: Set up JDK 8 + - name: Set up Java ${{ matrix.java }} uses: actions/setup-java@v2 with: - java-version: '8' + java-version: ${{ matrix.java }} distribution: 'temurin' cache: maven