Apply formatting

This will make sure we have a consistent style across our project and the PRs are only concerned with actual changes and no longer about style.
This commit is contained in:
Nanne Baars
2023-01-04 08:07:23 +01:00
committed by GitHub
parent b03777d39b
commit d2a1546dff
336 changed files with 13921 additions and 12688 deletions

View File

@ -47,6 +47,8 @@ jobs:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2-
- name: Check code formatting
run: mvn --no-transfer-progress spotless:check
- name: Build with Maven
run: mvn --no-transfer-progress package
@ -68,5 +70,8 @@ jobs:
path: ~/.m2
key: ubuntu-latest-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ubuntu-latest-m2-
- name: Check code formatting
#Fail fast
run: mvn --no-transfer-progress spotless:check
- name: Test with Maven
run: mvn --no-transfer-progress verify