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.
1 parent 64f7855 commit be36a66Copy full SHA for be36a66
.github/workflows/ui-tests.yml
@@ -120,9 +120,13 @@ jobs:
120
if ($p2.ExitCode -ne 0) { echo "::error::Ctrl+C Test failed!" } else { echo "::notice::Ctrl+C Test log" }
121
type ctrl-c.log
122
if ($p.ExitCode -ne 0) { exit 1 }
123
+ echo "writing test.ahk"
124
echo "this is not valid AutoHotkey code" >test.ahk
- Start-Process -PassThru -FilePath "${env:RUNNER_TEMP}\ahk\AutoHotKey64.exe" -ArgumentList "test.ahk"
125
+ echo "Intentionally failing"
126
+ $p3 = Start-Process -PassThru -FilePath "${env:RUNNER_TEMP}\ahk\AutoHotKey64.exe" -ArgumentList "test.ahk"
127
+ echo "Sleeping 5 seconds to allow the test to run"
128
Sleep 5000
129
+ echo "Fail"
130
exit 1
131
- name: Show logs
132
if: always()
0 commit comments