We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5d5c3c commit 3a512a9Copy full SHA for 3a512a9
.github/workflows/build.yml
@@ -14,7 +14,10 @@ jobs:
14
- run: ./gradlew build javadocJar checkMappings --stacktrace --warning-mode fail
15
- run: ./gradlew formatMappings --stacktrace --warning-mode fail
16
- name: Check mapping format
17
- run: if [ -n "$(git status --porcelain)" ]; then exit 1; fi
+ run: |
18
+ git add -A
19
+ git status
20
+ if [ -n "$(git status --porcelain)" ]; then exit 1; fi
21
- name: Build artifacts
22
if: ${{ matrix.java == '21-jdk' }}
23
continue-on-error: true
0 commit comments