Skip to content

up

up #1

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "21"
cache: maven
- name: Build and run tests
run: mvn -B -ntp test