Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,18 @@ jobs:
fail-fast: false
matrix:
os: [ 'ubuntu-latest' ]
java-version: [ 11, 12, 13, 14, 15, 16, 17, 18, 19 ]
java-version:
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
# Mockito currently does not support this distribution.
# - 20-ea
build-script: [ './mvnw' ]
include:
- os: windows-latest
Expand All @@ -73,9 +84,10 @@ jobs:
- name: Initialize JDK
uses: actions/setup-java@v3
with:
cache: 'maven'
check-latest: true
distribution: 'zulu'
java-version: '${{ matrix.java-version }}'
cache: 'maven'

- name: Compile and run tests
run: >-
Expand Down