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 04738bc commit 981236cCopy full SHA for 981236c
src/Symfony/Component/Process/Tests/ProcessTest.php
@@ -710,6 +710,9 @@ public function testProcessIsNotSignaled()
710
if ('\\' === \DIRECTORY_SEPARATOR) {
711
$this->markTestSkipped('Windows does not support POSIX signals');
712
}
713
+ if (\PHP_VERSION_ID < 80300 && isset($_SERVER['GITHUB_ACTIONS'])) {
714
+ $this->markTestSkipped('Transient on GHA with PHP < 8.3');
715
+ }
716
717
$process = $this->getProcess('echo foo');
718
$process->run();
0 commit comments