Skip to content

Bump org.springframework.boot:spring-boot-starter-parent from 3.1.1 to 3.1.2 #28

Bump org.springframework.boot:spring-boot-starter-parent from 3.1.1 to 3.1.2

Bump org.springframework.boot:spring-boot-starter-parent from 3.1.1 to 3.1.2 #28

Workflow file for this run

name: Pull request
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B compile
- name: Test with Maven
run: mvn -B test
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
with:
report_paths: '**/target/surefire-reports/TEST-*.xml'