Skip to content

Commit

Permalink
integration_tests.yml: use handle.exe to check what processes have ha…
Browse files Browse the repository at this point in the history
…ndles
  • Loading branch information
IhateTrains committed Jul 5, 2024
1 parent bf8f314 commit 6db0425
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,15 @@ jobs:
working-directory: Release/ImperatorToCK3
run: |
dotnet ImperatorToCK3Converter.dll
- name: "Check file handles"
# check what processes have handles to the files in the Github workspace dir
run: |
Get-ChildItem -Path $Env:GITHUB_WORKSPACE -Recurse -Force | ForEach-Object {
Write-Host ""
Write-Host "Checking handles for $($_.FullName)"
c:\sysinternals\handle.exe -a -nobanner $_.FullName
}
- name: "Cleanup"
if: always()
run: |
Expand Down

0 comments on commit 6db0425

Please sign in to comment.