Refactor skeleton viewer external animations handling (#16) #35
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: CSharpier formatting check | |
| on: [push, pull_request] | |
| jobs: | |
| format-check: | |
| permissions: {} # Remove all permissions | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install CSharpier | |
| shell: bash | |
| run: | | |
| dotnet tool install --global csharpier --version 0.30.6 | |
| - name: Check formatting | |
| shell: bash | |
| run: | | |
| dotnet csharpier --check . |