Skip to content

Commit 3425a1f

Browse files
authored
chore: Switched to csharpier as linter (#62)
1 parent 321fd3d commit 3425a1f

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/step-dotnet-format.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,7 @@ jobs:
4747
dotnet-version: ${{ inputs.dotnet-version }}
4848
dotnet-quality: ${{ inputs.dotnet-quality }}
4949

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 }}
50+
- name: Linting solution
51+
run: |
52+
dotnet tool restore
53+
dotnet csharpier --check ${{ inputs.solution }}

0 commit comments

Comments
 (0)