Skip to content

chore(deps): Bump org.hibernate.validator:hibernate-validator from 9.1.2.Final to 9.1.3.Final #422

chore(deps): Bump org.hibernate.validator:hibernate-validator from 9.1.2.Final to 9.1.3.Final

chore(deps): Bump org.hibernate.validator:hibernate-validator from 9.1.2.Final to 9.1.3.Final #422

Workflow file for this run

name: Test
permissions:
contents: read
on:
pull_request:
branches:
- 'main'
merge_group:
types:
- checks_requested
concurrency:
group: ${{ format('{0}-{1}', github.workflow, github.ref) }}
cancel-in-progress: true
jobs:
test:
name: Run unit tests
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
java: [ 25 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Common Setup
uses: ./.github/actions/common-setup
with:
java-version: ${{ matrix.java }}
- name: Build with Gradle
run: ./gradlew build --stacktrace
- name: Upload build results
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.os }} Java ${{ matrix.java }} build results
path: ${{ github.workspace }}/build/libs/
if-no-files-found: error
retention-days: 7
- name: Upload test results
if: ${{ failure() }}
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.os }} Java ${{ matrix.java }} test results
path: ${{ github.workspace }}/build/reports/
if-no-files-found: ignore
retention-days: 7
integration-test:
name: Run integration tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Common Setup
uses: ./.github/actions/common-setup
with:
java-version: 25
- name: Run integration tests
run: ./gradlew integrationTest --info
- name: Upload integration test results
if: ${{ always() }}
uses: actions/upload-artifact@v7
with:
name: Integration test results
path: ${{ github.workspace }}/build/reports/tests/integrationTest/
if-no-files-found: ignore
retention-days: 7