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:
4
.github/stale.yml
vendored
4
.github/stale.yml
vendored
@ -2,9 +2,9 @@
|
||||
daysUntilStale: 90
|
||||
daysUntilClose: 14
|
||||
onlyLabels:
|
||||
- waiting-for-input
|
||||
- waiting for input
|
||||
- wontfix
|
||||
staleLabel: stale
|
||||
markComment: >
|
||||
This issue has been automatically marked as `stale` because it has not had recent activity. :calendar: It will be _closed automatically_ in one week if no further activity occurs.
|
||||
closeComment: false
|
||||
closeComment: false
|
||||
|
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
@ -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
|
||||
|
Reference in New Issue
Block a user