Skip to content

Commit bfad004

Browse files
committed
Update test step to use console logger in CI
Replaces the TRX logger with the console logger for test output in the CI workflow. Removes the step that publishes TRX test results as artifacts.
1 parent 0db4c57 commit bfad004

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/ci-build.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,7 @@ jobs:
5959

6060
# Run tests
6161
- name: Test solution
62-
run: dotnet test --no-build -c ${{matrix.configuration}} -l "trx;"
63-
64-
# Publish test results
65-
- name: Publish test results
66-
uses: actions/upload-artifact@v5
67-
with:
68-
name: '**/TestResults/*.trx'
69-
path: TestResults
70-
if-no-files-found: error
62+
run: dotnet test --no-build -c ${{matrix.configuration}} -l "console;verbosity=detailed"
7163

7264
# Pack solution
7365
- name: Pack solution

0 commit comments

Comments
 (0)