Skip to content

Commit 3a512a9

Browse files
committed
Fix format check?
1 parent c5d5c3c commit 3a512a9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
- run: ./gradlew build javadocJar checkMappings --stacktrace --warning-mode fail
1515
- run: ./gradlew formatMappings --stacktrace --warning-mode fail
1616
- name: Check mapping format
17-
run: if [ -n "$(git status --porcelain)" ]; then exit 1; fi
17+
run: |
18+
git add -A
19+
git status
20+
if [ -n "$(git status --porcelain)" ]; then exit 1; fi
1821
- name: Build artifacts
1922
if: ${{ matrix.java == '21-jdk' }}
2023
continue-on-error: true

0 commit comments

Comments
 (0)