Skip to content

fix(deps): update spring boot to v3.5.8 #5

fix(deps): update spring boot to v3.5.8

fix(deps): update spring boot to v3.5.8 #5

name: spring-multimodule-example CI Build
on:
pull_request:
branches: [master]
paths:
- "spring-multimodule-example/**"
types:
- opened
- synchronize
- reopened
jobs:
integration-tests:
name: Run Unit & Integration Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: spring-multimodule-example
strategy:
matrix:
distribution: [ 'temurin' ]
java: [ '21' ]
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5.0.0
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
cache: 'maven'
- name: Build and analyze
run: ./mvnw clean verify