Skip to content

Commit 170528d

Browse files
committed
Fix source path in CI.
1 parent b12a2fc commit 170528d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
with:
2222
dotnet-version: 7.0.x
2323
- name: Restore dependencies
24-
run: dotnet restore
24+
run: dotnet restore src
2525
- name: Build
26-
run: dotnet build --no-restore
26+
run: dotnet build src --no-restore
2727
- name: Test
28-
run: dotnet test --no-build --verbosity normal
28+
run: dotnet test src --no-build --verbosity normal

0 commit comments

Comments
 (0)