Skip to content

chore(javadocs): update javados and examples #98

chore(javadocs): update javados and examples

chore(javadocs): update javados and examples #98

Workflow file for this run

---
name: Test
on:
pull_request:
branches:
- main
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
# https://github.com/actions/checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2
with:
persist-credentials: false
- name: Setup Java
# https://github.com/actions/setup-java
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # 5.2.0
with:
java-version: 25
distribution: 'zulu'
cache: maven
- name: Run tests (lib)
run: |
MAVEN_ARGS="-B -V -e -ntp -Dstyle.color=always -f lib/pom.xml"
mvn $MAVEN_ARGS test