diff --git a/.github/workflows/ci-suite.yml b/.github/workflows/ci-suite.yml index c5d154e8e2..e4ce51f68d 100644 --- a/.github/workflows/ci-suite.yml +++ b/.github/workflows/ci-suite.yml @@ -354,6 +354,18 @@ jobs: Start-Sleep -Seconds 10 dotnet test -c ${{ matrix.configuration }} --no-build --filter FullyQualifiedName~TestLiveServer --logger GitHubActions --collect:"XPlat Code Coverage" --settings ../../build/coverlet.runsettings --results-directory ../../TestResults + - name: get logs system + if: always() + run: | + Get-EventLog -LogName System | Format-List + shell: powershell + + - name: get logs application + if: always() + run: | + Get-EventLog -LogName Application | Format-List + shell: powershell + - name: Store Code Coverage uses: actions/upload-artifact@v3 with: