Skip to content

Commit 9648c32

Browse files
authored
Update dotnet.yml
1 parent e1068fe commit 9648c32

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,14 @@ jobs:
1818
with:
1919
dotnet-version: 6.0.x
2020
- name: Restore dependencies
21-
run: dotnet restore
21+
run: |
22+
cd Mock2022SkeletonCode
23+
dotnet restore
2224
- name: Build
23-
run: dotnet build --no-restore
25+
run: |
26+
cd Mock2022SkeletonCodedotnet
27+
build --no-restore
2428
- name: Test
25-
run: dotnet test --no-build --verbosity normal
29+
run: |
30+
cd Mock2022SkeletonCode
31+
dotnet test --no-build --verbosity normal

0 commit comments

Comments
 (0)