Skip to content

Commit

Permalink
Fix format check?
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Jan 13, 2025
1 parent c5d5c3c commit 3a512a9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ jobs:
- run: ./gradlew build javadocJar checkMappings --stacktrace --warning-mode fail
- run: ./gradlew formatMappings --stacktrace --warning-mode fail
- name: Check mapping format
run: if [ -n "$(git status --porcelain)" ]; then exit 1; fi
run: |
git add -A
git status
if [ -n "$(git status --porcelain)" ]; then exit 1; fi
- name: Build artifacts
if: ${{ matrix.java == '21-jdk' }}
continue-on-error: true
Expand Down

0 comments on commit 3a512a9

Please sign in to comment.