Skip to content

docs: reword README intro to lead with use case #28

docs: reword README intro to lead with use case

docs: reword README intro to lead with use case #28

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
java: ['17', '21', '25']
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: maven
- name: Verify (compile + test)
run: mvn --batch-mode --no-transfer-progress verify