Skip to content

Bump org.assertj:assertj-core from 3.14.0 to 3.27.7 #49

Bump org.assertj:assertj-core from 3.14.0 to 3.27.7

Bump org.assertj:assertj-core from 3.14.0 to 3.27.7 #49

Workflow file for this run

name: Build
on:
push:
branches:
- develop
paths-ignore:
- '.github/workflows/release-drafter.yml'
- '.gitignore'
- '*.md'
- LICENSE
pull_request:
branches:
- develop
paths-ignore:
- '.github/workflows/release-drafter.yml'
- '.gitignore'
- '*.md'
- LICENSE
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
# we want to run the full build on all os: don't cancel running jobs even if one fails
fail-fast: false
matrix:
os: [macos-14, ubuntu-24.04, windows-2022]
java-version: [8]
include:
# Best effort: only test newest java version on Ubuntu
- os: ubuntu-24.04
java-version: 17
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- name: build
run: |
./mvnw -V package