Update dependency software.xdev:spring-data-eclipse-store to v2 #143
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ develop ] | |
paths-ignore: | |
- '**.md' | |
- '.config/**' | |
- '.github/**' | |
- '.idea/**' | |
- 'assets/**' | |
pull_request: | |
branches: [ develop ] | |
paths-ignore: | |
- '**.md' | |
- '.config/**' | |
- '.github/**' | |
- '.idea/**' | |
- 'assets/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
java: [17, 21] | |
distribution: [temurin] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Build with Maven | |
run: ./mvnw -B clean package | |
- name: Check for uncommited changes | |
run: | | |
if [[ "$(git status --porcelain)" != "" ]]; then | |
echo ---------------------------------------- | |
echo git status | |
echo ---------------------------------------- | |
git status | |
echo ---------------------------------------- | |
echo git diff | |
echo ---------------------------------------- | |
git diff | |
echo ---------------------------------------- | |
echo Troubleshooting | |
echo ---------------------------------------- | |
echo "::error::Unstaged changes detected. Locally try running: git clean -ffdx && ./mvnw -B clean package" | |
exit 1 | |
fi | |
checkstyle: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }} | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
java: [17] | |
distribution: [temurin] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Run Checkstyle | |
run: ./mvnw -B checkstyle:check -P checkstyle -T2C | |
pmd: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }} | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
java: [17] | |
distribution: [temurin] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Run PMD | |
run: ./mvnw -B test pmd:aggregate-pmd-no-fork pmd:check -P pmd -DskipTests -T2C | |
- name: Run CPD (Copy Paste Detector) | |
run: ./mvnw -B pmd:aggregate-cpd pmd:cpd-check -P pmd -DskipTests -T2C | |
- name: Upload report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pmd-report | |
if-no-files-found: ignore | |
path: | | |
target/site/*.html | |
target/site/css/** | |
target/site/images/logos/maven-feather.png | |
target/site/images/external.png |