Skip to content

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

Add Setup Pose and Setup Bone Slot Pose actions.

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

name: Check C++ Formatting
on:
push:
workflow_dispatch:
jobs:
check-cpp:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Setup clang-format
run: ./formatters/setup-clang-format-docker.sh
- name: Format C++
run: ./formatters/format-cpp.sh
- name: Check for changes
run: |
git ls-files -m
if [[ `git ls-files -m` ]]; then echo "Detected C++ formatting errors!" & exit 1; fi