Skip to content

Bump dependencies, update github ci, gradle and copyright headers and… #42

Bump dependencies, update github ci, gradle and copyright headers and…

Bump dependencies, update github ci, gradle and copyright headers and… #42

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 21 ]
fail-fast: true
steps:
- uses: actions/checkout@v4
- name: JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
cache: 'gradle'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew build --no-daemon