Skip to content

Update java version for the release branch to 21 #77

Update java version for the release branch to 21

Update java version for the release branch to 21 #77

Workflow file for this run

name: CI build
on: [push]
jobs:
builds:
name: '${{ matrix.os }} with Java ${{ matrix.jdk }}'
runs-on: ${{ matrix.os }}
strategy:
matrix:
jdk: [21, 23]
os: [windows-latest, ubuntu-latest]
fail-fast: false
max-parallel: 4
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.jdk }}
- name: Compile
run: |
./gradlew clean jar