Skip to content

Bump org.springframework.boot:spring-boot-starter-parent #625

Bump org.springframework.boot:spring-boot-starter-parent

Bump org.springframework.boot:spring-boot-starter-parent #625

Workflow file for this run

name: Build and Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: maven
- name: Build with Maven
run: mvn verify --batch-mode --no-transfer-progress --file pom.xml
- name: Create test summary
uses: test-summary/action@v2
with:
paths: |
**/target/surefire-reports/TEST-*.xml
**/target/surefire-reports/TESTS-*.xml
**/target/failsafe-reports/TEST-*.xml
if: always()