Skip to content

Upgrading to spring 7, hibernate 7 #145

Upgrading to spring 7, hibernate 7

Upgrading to spring 7, hibernate 7 #145

Workflow file for this run

---
name: build pull request
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
permissions:
contents: read
checks: write
pull-requests: write
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
env:
MAVEN_ARGS: '--no-transfer-progress --color always'
steps:
- uses: actions/checkout@v6
- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
- name: Build with Maven
run: mvn -fae -DskipITs=false -B package
- name: Publish Unit Test Results
if: always()
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: "**/target/surefire-reports/*.xml"