Skip to content

Merge pull request #34 from openpatch/changeset #38

Merge pull request #34 from openpatch/changeset

Merge pull request #34 from openpatch/changeset #38

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up Java
# The library is still built for 17 (maven.compiler.release), but the
# tests that compile the documentation's interactive examples need a
# compiler that understands them: they are Java 25 compact source files,
# and on an older JDK those two tests can only skip.
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 25
cache: maven
- name: Run tests
run: mvn -B test