Add Setup Pose and Setup Bone Slot Pose actions. #356
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 C# Formatting | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| check-csharp: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dotnet | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: "8.0.x" | |
| - name: Format C# | |
| run: ./formatters/format-csharp.sh | |
| - name: Check for changes | |
| run: | | |
| git add . | |
| git reset . | |
| git ls-files -m | |
| if [[ `git ls-files -m` ]]; then | |
| git diff | |
| git diff > format-diff.txt | |
| echo "Detected C# formatting errors!" & exit 1; | |
| fi |