Skip to content

Commit

Permalink
Add support and CI tests for Java 8 and 17
Browse files Browse the repository at this point in the history
  • Loading branch information
arey committed Sep 17, 2022
1 parent fd01f09 commit 5e4c3c6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17' ]

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK ${{matrix.java}}
uses: actions/setup-java@v2
with:
java-version: '11'
java-version: ${{matrix.java}}
distribution: 'adopt'
cache: maven
- name: Build with Maven
Expand Down

0 comments on commit 5e4c3c6

Please sign in to comment.