We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29bcb31 commit fac3128Copy full SHA for fac3128
1 file changed
.github/workflows/format-check.yml
@@ -6,12 +6,18 @@ jobs:
6
check-format:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@v4
+ - name: Checkout repository
10
+ uses: actions/checkout@v4
11
+ with:
12
+ submodules: recursive
13
14
- name: Setup .NET
15
uses: actions/setup-dotnet@v4
16
with:
17
dotnet-version: '10.0.x'
18
19
+ - name: Restore dependencies
20
+ run: dotnet restore -p:EnableWindowsTargeting=true
21
+
22
- name: Verify C# Formatting
- run: dotnet format --verify-no-changes
23
+ run: dotnet format --verify-no-changes --no-restore
0 commit comments