We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
csharpier
1 parent 321fd3d commit 3425a1fCopy full SHA for 3425a1f
.github/workflows/step-dotnet-format.yml
@@ -47,13 +47,7 @@ jobs:
47
dotnet-version: ${{ inputs.dotnet-version }}
48
dotnet-quality: ${{ inputs.dotnet-quality }}
49
50
- - name: Restore dependencies
51
- run: dotnet restore ${{ inputs.solution }} -v ${{ inputs.dotnet-logging }}
52
-
53
- - name: .NET Lint
54
- uses: zyactions/dotnet-lint@v1
55
- with:
56
- workspace: ${{ inputs.solution }}
57
58
-# - name: Execute `dotnet-format`
59
-# run: dotnet format ${{ inputs.solution }} --verify-no-changes --verbosity ${{ inputs.dotnet-logging }}
+ - name: Linting solution
+ run: |
+ dotnet tool restore
+ dotnet csharpier --check ${{ inputs.solution }}
0 commit comments