Skip to content

deps(deps-dev): bump org.assertj:assertj-core from 3.27.3 to 3.27.7 #31

deps(deps-dev): bump org.assertj:assertj-core from 3.27.3 to 3.27.7

deps(deps-dev): bump org.assertj:assertj-core from 3.27.3 to 3.27.7 #31

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build (Java ${{ matrix.java }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [17, 21]
steps:
- uses: actions/checkout@v6
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: maven
- name: Build and test
run: mvn -B -ntp verify
- name: Javadoc check
if: matrix.java == '17'
run: mvn -B -ntp javadoc:javadoc