We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sleep
1 parent c20f64a commit dbd6574Copy full SHA for dbd6574
.github/workflows/ui-tests.yml
@@ -88,7 +88,11 @@ jobs:
88
$p.WaitForExit()
89
if ($p.ExitCode -ne 0) { echo "::error::Test failed!" } else { echo "::notice::Test log" }
90
type bg-hook.log
91
+ $p2 = Start-Process -PassThru -FilePath "${env:RUNNER_TEMP}\ahk\AutoHotKey64.exe" -ArgumentList ui-tests\ctrl-c.ahk, "$PWD\ctrl-c"
92
+ $p2.WaitForExit()
93
+ if ($p2.ExitCode -ne 0) { echo "::error::Ctrl+C Test failed!" } else { echo "::notice::Ctrl+C Test log" }
94
+ type ctrl-c.log
95
if ($p.ExitCode -ne 0) { exit 1 }
96
- name: Show logs, if canceled
97
if: cancelled()
- run: type bg-hook.log
98
+ run: type bg-hook.log; type ctrl-c.log
0 commit comments