Test on all supported JDKs

This commit is contained in:
Nico Mexis 2021-07-25 11:32:04 +02:00 committed by GitHub
parent 932d135ceb
commit af2f771597
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,13 +12,16 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '16' ] # All currently supported versions
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
java-version: '8'
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Build with Maven
run: mvn -B package --file pom.xml