Skip to content

Commit 3151535

Browse files
authored
Fix CI (#237)
1 parent 90075e3 commit 3151535

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
uses: shivammathur/setup-php@v2
2121
with:
2222
php-version: ${{ matrix.php }}
23+
ini-values: zend.max_allowed_stack_size=-1
2324
tools: composer:v2
2425
coverage: none
2526

tests/StreamingTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function sourceAndTargetProvider(): Generator
2727
'File' => fn() => Target::newToFile(tempnam(sys_get_temp_dir(), 'image')),
2828
'Memory' => fn() => Target::newToMemory(),
2929
'Resource' => fn() => new TargetResource(fopen('php://memory', 'wb+')),
30-
'Resource(Not Readable)' => fn() => new TargetResource(fopen('php://memory', 'wb'))
30+
'Resource (not readable)' => fn() => new TargetResource(fopen('php://memory', 'wb'))
3131
];
3232

3333
foreach ($sources as $sourceName => $source) {

0 commit comments

Comments
 (0)