Skip to content

Add Setup Pose and Setup Bone Slot Pose actions. #330

Add Setup Pose and Setup Bone Slot Pose actions.

Add Setup Pose and Setup Bone Slot Pose actions. #330

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