We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3db3b1f commit 3896ccfCopy full SHA for 3896ccf
.github/workflows/main.yaml
@@ -99,6 +99,8 @@ jobs:
99
runs-on: ubuntu-latest
100
steps:
101
- uses: actions/checkout@v4
102
+ with:
103
+ fetch-depth: 0
104
- name: Set up JDK 17
105
uses: actions/setup-java@v4
106
with:
makefile
@@ -4,8 +4,8 @@ build:
4
# Analyze code for errors, potential issues, and coding standard violations.
5
# Reports problems but does not modify the code.
6
lint:
7
- mvn -T12C spotless:check
+ mvn -T12C -Pspotless spotless:check
8
# Automatically format the code to conform to a style guide.
9
# Modifies the code to ensure consistent formatting.
10
format:
11
- mvn -T12C spotless:apply
+ mvn -T12C -Pspotless spotless:apply
0 commit comments