Skip to content

Bump the github-actions group with 2 updates (#28) #15

Bump the github-actions group with 2 updates (#28)

Bump the github-actions group with 2 updates (#28) #15

Workflow file for this run

name: Java CI
on:
push:
workflow_dispatch:
jobs:
build:
name: Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java:
[
21,
]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build with Gradle
run: gradle build