We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78b8ba3 commit 5e16786Copy full SHA for 5e16786
.github/workflows/format-cs-files.yml
@@ -24,7 +24,7 @@ concurrency:
24
jobs:
25
formatting:
26
name: Format file headers with .NET ${{ vars.DOTNET_SDK_VERSION }}
27
- runs-on: ubuntu-latest
+ runs-on: windows-latest
28
steps:
29
- uses: actions/checkout@v3
30
with:
@@ -33,6 +33,8 @@ jobs:
33
uses: actions/setup-dotnet@v4
34
35
dotnet-version: ${{ vars.DOTNET_SDK_VERSION }}
36
+ - name: Install dotnet-format tool
37
+ run: dotnet tool install -g dotnet-format
38
- run: |
39
dotnet format whitespace --verify-no-changes --verbosity diagnostic
40
dotnet format style --verify-no-changes --verbosity diagnostic
0 commit comments