fix(deps): update assertj.version to v3.27.2 #95
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Maven, and cache/validationore any dependencies to improve the workflow execution time | |
# For more information see: https://hvalidationp.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Build validation | |
on: | |
push: | |
paths: | |
- "validation/**" | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
validation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'zulu' | |
cache: maven | |
- name: Build with Maven | |
run: | | |
cd validation | |
mvn -B -q clean test | |