Skip to content

Implementation of last #11

Implementation of last

Implementation of last #11

Workflow file for this run

name: Build and Test
on:
[ push ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
# Used by gradle toolchain to actually build
- name: Set up JDK 22
uses: actions/setup-java@v4
with:
java-version: '22'
distribution: 'temurin'
# Because gradle 8.7 only supports Java 21, run the build with 21 and
# use the 22 version as a toolchain
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'gradle'
- name: Build
run: ./gradlew build --no-daemon