Skip to content

Feature/sealed v4 (#47) #59

Feature/sealed v4 (#47)

Feature/sealed v4 (#47) #59

Workflow file for this run

name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 22
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 22
- name: Build with Maven
run: ./mvnw --batch-mode --no-transfer-progress verify -DexcludedGroups=performance,endtoend --file pom.xml