Skip to content

Towards the next release #28

Towards the next release

Towards the next release #28

Workflow file for this run

name: Build CI
on: [push]
jobs:
build:
strategy:
matrix:
jdk: [11, 17, 21]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '${{matrix.jdk}}'
- name: Build with Gradle
run: ./gradlew build
- name: Run tests
run: ./gradlew test