Skip to content

fixed github actions #144

fixed github actions

fixed github actions #144

Workflow file for this run

name: Java Matrix CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
name: Java 21 test build
steps:
- name: "Check out code"
uses: actions/checkout@v5
- name: "Set up JDK"
uses: actions/setup-java@v5
with:
java-version: 21
distribution: "zulu"
cache: 'maven'
- name: "Build with Maven"
run: mvn -B clean install