Skip to content

Commit fac3128

Browse files
committed
フォーマットチェック修正
1 parent 29bcb31 commit fac3128

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/format-check.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,18 @@ jobs:
66
check-format:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- name: Checkout repository
10+
uses: actions/checkout@v4
11+
with:
12+
submodules: recursive
1013

1114
- name: Setup .NET
1215
uses: actions/setup-dotnet@v4
1316
with:
1417
dotnet-version: '10.0.x'
1518

19+
- name: Restore dependencies
20+
run: dotnet restore -p:EnableWindowsTargeting=true
21+
1622
- name: Verify C# Formatting
17-
run: dotnet format --verify-no-changes
23+
run: dotnet format --verify-no-changes --no-restore

0 commit comments

Comments
 (0)