Skip to content

Commit 9b23413

Browse files
committed
ci(test-all): dotnet test uses GitHubActionsTestLogger
1 parent 2a3ed7f commit 9b23413

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/test-all.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,18 @@ jobs:
2424
${{ runner.os }}-nuget-
2525
2626
- name: dotnet restore
27-
run: dotnet restore
27+
run: dotnet restore
2828

2929
- name: dotnet build
30-
run: dotnet build --no-restore
30+
run: |
31+
dotnet build --no-restore
32+
echo "dotnet build done"
3133
3234
- name: dotnet test
33-
run: dotnet test --no-build --verbosity normal
35+
# run: dotnet test --no-build --verbosity normal
36+
run: >
37+
dotnet test
38+
--configuration Release
39+
--logger GitHubActions
40+
--
41+
RunConfiguration.CollectSourceInformation=true

0 commit comments

Comments
 (0)