diff options
author | Raul Santos <raulsntos@gmail.com> | 2022-08-27 03:14:27 +0200 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2022-08-27 10:11:35 +0200 |
commit | ea6b8ecb6fb535004e7a3e8ce6ac7673665144b8 (patch) | |
tree | 4ad859ded0a1a4d943141fb6464fcecfe47f8b8c /.github/workflows/static_checks.yml | |
parent | d35c58507c7b4e1da2c310f3d290c7c13ea8fcf0 (diff) |
Add `dotnet format` to CI to check C# style
Diffstat (limited to '.github/workflows/static_checks.yml')
-rw-r--r-- | .github/workflows/static_checks.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index 557b67c970..388c1ca9fd 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -63,3 +63,7 @@ jobs: - name: Style checks via clang-format (clang_format.sh) run: | bash ./misc/scripts/clang_format.sh + + - name: Style checks via dotnet format (dotnet_format.sh) + run: | + bash ./misc/scripts/dotnet_format.sh |