Skip to content

Commit

Permalink
Run build with Java 21 and 22
Browse files Browse the repository at this point in the history
  • Loading branch information
mosabua authored and oneonestar committed Aug 21, 2024
1 parent 1fd1cd7 commit 8dd4b43
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,17 @@ env:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [21, 22]
timeout-minutes: 20
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Install required Java distribution
uses: actions/setup-java@v4
with:
java-version: '21'
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
- name: Build with Maven
run: $MAVEN clean verify
Expand Down

0 comments on commit 8dd4b43

Please sign in to comment.