Skip to content

Bump org.springframework.boot:spring-boot-starter-parent from 2.7.5 to 3.1.3 #124

Bump org.springframework.boot:spring-boot-starter-parent from 2.7.5 to 3.1.3

Bump org.springframework.boot:spring-boot-starter-parent from 2.7.5 to 3.1.3 #124

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: 'CI'
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '8'
cache: maven
- name: Build
run: mvn -B package --file pom.xml -DskipTests
- name: Run Unit & Integration Tests
run: mvn -B verify --file pom.xml
- name: Upload Test Artifacts
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test-results
path: target/*-reports/TEST-*.xml