Fixed debug skeleton position. #327
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check Java Formatting | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| check-java: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'zulu' | |
| java-version: "16" | |
| - name: Format Java | |
| run: ./formatters/format-java.sh | |
| - name: Check for changes | |
| run: | | |
| git ls-files -m | |
| if [[ `git ls-files -m` ]]; then echo "Detected Java formatting errors!" & exit 1; fi |