Skip to content

Commit

Permalink
Add Java 11 to the CI, for #80
Browse files Browse the repository at this point in the history
  • Loading branch information
wetneb committed Feb 5, 2022
1 parent 5e7c236 commit 01c6cb9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:

jobs:
build:
strategy:
matrix:
java: [ 8, 11 ]

runs-on: ubuntu-latest

Expand All @@ -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

Expand Down

0 comments on commit 01c6cb9

Please sign in to comment.