diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 5d682be3d..b04deaaab 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -46,3 +46,12 @@ jobs: if ($LastExitCode -ne 0) { throw "Error during build" } & powershell.exe .\tools\win32\test.ps1 if ($LastExitCode -ne 0) { throw "Error during test" } + + - name: Show Log Files + if: ${{ always() }} + run: | + foreach ($file in Get-ChildItem -Recurse -Filter "*.log") { + Write-Host "::group::$($file.FullName)" + Get-Content $file.FullName + Write-Host "::endgroup::" + }