Skip to content

Bump org.assertj:assertj-core from 3.25.3 to 3.26.0 (#214) #386

Bump org.assertj:assertj-core from 3.25.3 to 3.26.0 (#214)

Bump org.assertj:assertj-core from 3.25.3 to 3.26.0 (#214) #386

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
push:
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17', '19', '20' ]
architecture: [ 'x64' ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
cache: 'maven'
- name: Build with Maven
run: mvn --no-transfer-progress --batch-mode verify