Skip to content

Align with the Rules Repository #1

Align with the Rules Repository

Align with the Rules Repository #1

Workflow file for this run

name: Maven Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up JDK 25
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "25"
cache: maven
- name: Build and test
run: mvn -B -ntp verify