File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -78,22 +78,22 @@ jobs:
78
78
if : runner.arch == 'X86'
79
79
run : |
80
80
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
82
82
83
83
- name : Restore, build, and test x64
84
84
if : runner.arch == 'X64'
85
85
run : |
86
86
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
88
88
89
89
- name : Restore, build, and test ARM
90
90
if : runner.arch == 'ARM'
91
91
run : |
92
92
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
94
94
95
95
- name : Restore, build, and test ARM64
96
96
if : runner.arch == 'ARM64'
97
97
run : |
98
98
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
You can’t perform that action at this time.
0 commit comments