Skip to content

chore(deps): update dependency maven to v3.9.12 #8

chore(deps): update dependency maven to v3.9.12

chore(deps): update dependency maven to v3.9.12 #8

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@v6
with:
fetch-depth: 0
- name: Set up JDK ${{ matrix.java }}
uses: actions/[email protected]
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
cache: 'maven'
- name: Build and analyze
run: ./mvnw clean verify