Skip to content

CI build with JDK 21 to 23 #53

CI build with JDK 21 to 23

CI build with JDK 21 to 23 #53

Workflow file for this run

name: Java CI with Gradle
on:
push:
branches: [ "master", "main" ]
pull_request:
branches: [ "master", "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '21', '22', '23' ]
steps:
- uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew build check --warning-mode none