Skip to content

Commit 238d072

Browse files
committed
fix newline and whitespace issues
1 parent a52eadc commit 238d072

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/errorprone.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
sed -i 's/-Xplugin:ErrorProne -XepAllErrorsAsWarnings/-Xplugin:ErrorProne/g' pom.xml
5353
5454
set -o pipefail
55-
55+
5656
# Use -fae (fail-at-end) to build all modules and report failures at the end
5757
mvn -fae clean test-compile -T$(nproc) 2>&1 | tee errorprone.log
5858
MVN_EXIT=${PIPESTATUS[0]}
@@ -80,7 +80,7 @@ jobs:
8080
if grep -q "^\[ERROR\]" errorprone.log; then
8181
HAS_ERRORS=true
8282
fi
83-
83+
8484
if [ "$HAS_ERRORS" = "true" ]; then
8585
echo "has_errors=true" >> $GITHUB_OUTPUT
8686
echo "::error::Error Prone and/or compilation issues found in the code"
@@ -119,4 +119,3 @@ jobs:
119119
- name: Fail if errors found
120120
if: steps.check-errors.outputs.has_errors == 'true'
121121
run: exit 1
122-

0 commit comments

Comments
 (0)