Skip to content

Commit 2824851

Browse files
GitHub Action updated to include detailed logging in the console.
1 parent 399d780 commit 2824851

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,11 @@ jobs:
2929
- name: Build
3030
run: dotnet build --no-restore
3131
- name: Test (.NET 8.0)
32-
run: dotnet test --no-build --framework net8.0 --verbosity detailed
32+
run: dotnet test --no-build --framework net8.0 \
33+
--logger "console;verbosity=detailed"
3334
- name: Test (.NET 9.0)
34-
run: dotnet test --no-build --framework net9.0 --verbosity detailed
35+
run: dotnet test --no-build --framework net9.0 \
36+
--logger "console;verbosity=detailed"
3537
- name: Test (.NET 10.0)
36-
run: dotnet test --no-build --framework net10.0 --verbosity detailed
38+
run: dotnet test --no-build --framework net10.0 \
39+
--logger "console;verbosity=detailed"

0 commit comments

Comments
 (0)