Skip to content

Commit 12790e4

Browse files
committed
Run CI on all branches except v1
1 parent d612ae1 commit 12790e4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: CI
33
on:
44
push:
55
branches:
6+
- '*'
67
- '!v1'
78
pull_request:
89
branches-ignore:

features/bootstrap/ProfilerContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public function theResourceShouldBePurgedFromTheCache(string $resourceName)
178178
$iri = preg_replace('/^xkey\: /', '', $xkeyHeader->getValue());
179179
$iris = explode(' ', $iri);
180180
array_push($purged, ...$iris);
181-
if (in_array($expectedIri, $iris, true)) {
181+
if (\in_array($expectedIri, $iris, true)) {
182182
return true;
183183
}
184184
}

0 commit comments

Comments
 (0)