Skip to content

chore(deps): update dependency com.diffplug.spotless:spotless-maven-p… #194

chore(deps): update dependency com.diffplug.spotless:spotless-maven-p…

chore(deps): update dependency com.diffplug.spotless:spotless-maven-p… #194

name: batch-boot-jpa-sample CI Build
on:
push:
paths:
- "batch-boot-jpa-sample/**"
branches: [main]
pull_request:
paths:
- "batch-boot-jpa-sample/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
name: Run Unit & Integration Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: batch-boot-jpa-sample
strategy:
matrix:
distribution: [ 'temurin' ]
java: [ '21' ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- 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