Skip to content

Commit 3fd7a34

Browse files
running tests with different action
1 parent 47a22ab commit 3fd7a34

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/cdp.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,24 @@ jobs:
6969
[io.compression.zipfile]::OpenRead($dst).Entries.Name | % { "- $_"}
7070
shell: pwsh
7171

72+
- uses: darenm/[email protected]
73+
74+
- name: Test (new)
75+
continue-on-error: true
76+
run: |
77+
cd $env:OutDir
78+
pwd
79+
vstest.console.exe *.UnitTests.dll --ListTests
80+
vstest.console.exe *.UnitTests.dll /Parallel "/logger:console;verbosity=detailed" "/logger:trx;LogFileName=TestResults.trx"
81+
82+
- name: Generate test report (new)
83+
uses: dorny/test-reporter@v1
84+
with:
85+
name: Tests Results (new)
86+
path: ${{ env.OutDir }}*.trx
87+
reporter: dotnet-trx
88+
fail-on-error: true
89+
7290
- name: Test
7391
uses: rusty-bender/vstest-action@main
7492
with:

0 commit comments

Comments
 (0)