Skip to content

Commit befe907

Browse files
author
Petr Sramek
committed
i mean really
1 parent 186a209 commit befe907

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/format-cs-files.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
run: dotnet tool install -g dotnet-format
3838
- name: Format with .NET ${{ vars.DOTNET_SDK_VERSION }}
3939
run: |
40-
dotnet format whitespace
41-
dotnet format style
42-
dotnet format analyzers --diagnostics IDE0073
40+
dotnet format whitespace --verbosity diagnostic
41+
dotnet format style --verbosity diagnostic
42+
dotnet format analyzers --diagnostics IDE0073 --verbosity diagnostic
4343
working-directory: ${{ github.workspace }}
4444
- name: Validate with .NET ${{ vars.DOTNET_SDK_VERSION }}
4545
id: git
@@ -51,8 +51,9 @@ jobs:
5151
set -e
5252
working-directory: ${{ github.workspace }}
5353
- name: Push to ${{ github.ref }}
54-
if: ${{ steps.git.outputs.has-changes == '1' }}
54+
# if: ${{ steps.git.outputs.has-changes == '1' }}
5555
run: |
56+
echo ${{ steps.git.outputs.has-changes == '1' }}
5657
git add .
5758
git config user.name "$(git log -n 1 --pretty=format:%an)"
5859
git config user.email "$(git log -n 1 --pretty=format:%ae)"

0 commit comments

Comments
 (0)