Skip to content

Commit 2436f12

Browse files
committed
Increase log level during test runs.
1 parent 550185b commit 2436f12

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-and-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,22 +78,22 @@ jobs:
7878
if: runner.arch == 'X86'
7979
run: |
8080
dotnet restore -a x86
81-
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity normal --filter "RequiresExternalRepo!=true" -a x86
81+
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity detailed --filter "RequiresExternalRepo!=true" -a x86
8282
8383
- name: Restore, build, and test x64
8484
if: runner.arch == 'X64'
8585
run: |
8686
dotnet restore -a x64
87-
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity normal --filter "RequiresExternalRepo!=true" -a x64
87+
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity detailed --filter "RequiresExternalRepo!=true" -a x64
8888
8989
- name: Restore, build, and test ARM
9090
if: runner.arch == 'ARM'
9191
run: |
9292
dotnet restore -a arm
93-
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity normal --filter "RequiresExternalRepo!=true" -a arm
93+
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity detailed --filter "RequiresExternalRepo!=true" -a arm
9494
9595
- name: Restore, build, and test ARM64
9696
if: runner.arch == 'ARM64'
9797
run: |
9898
dotnet restore -a arm64
99-
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity normal --filter "RequiresExternalRepo!=true" -a arm64
99+
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity detailed --filter "RequiresExternalRepo!=true" -a arm64

0 commit comments

Comments
 (0)