Skip to content

Commit

Permalink
Ensure forward compatibility by executing the tests with Java 17 & 21
Browse files Browse the repository at this point in the history
Note that the goal is not to require Java 21, just to make sure that
WindowBuilder that it can be executed with the current LTS.
  • Loading branch information
ptziegler committed Sep 22, 2023
1 parent 520bae2 commit dfff129
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
java: [ 17 ]
java: [ 17, 21 ]
runs-on: ${{ matrix.os }}
name: OS ${{ matrix.os }} Java ${{ matrix.java }} compile
timeout-minutes: 90
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 11
- name: Set up JDK 17/21
uses: actions/setup-java@v3
with:
distribution: 'temurin' # See 'Supported distributions' for available options
Expand Down

0 comments on commit dfff129

Please sign in to comment.