fix: change avatar selection does not clear wearable selection #1105
This file contains 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: dotnet-format | |
on: | |
push: | |
paths: | |
- "**.cs" | |
- ".editorconfig" | |
jobs: | |
check-format: | |
runs-on: windows-latest | |
steps: | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '5.0.x' | |
- name: Install dotnet-format tool | |
run: dotnet tool install -g dotnet-format | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Run dotnet format | |
run: dotnet format "./" --exclude .github docs~ logo~ --folder --check --verbosity diagnostic |