Add ConfigureJsonOptions and rename CrdtConfig to Harmony #13
Workflow file for this run
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: Format | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install .NET | |
| uses: actions/setup-dotnet@v4 | |
| # Verifies the code matches .editorconfig (whitespace + code style + analyzers). | |
| # Fails the build if anything is out of format. To fix locally, run: | |
| # dotnet format | |
| - name: Verify formatting | |
| run: dotnet format --verify-no-changes |