Skip to content

Commit f9ed862

Browse files
committed
Remove PHP 7.2 and 7.3 testing
1 parent 314faf3 commit f9ed862

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/conformance.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
php-version: [ '7.2', '7.3', '7.4','8.0' ]
15+
php-version: [ '7.4','8.0' ]
1616
name: PHP ${{ matrix.php-version }} Conformance Test
1717
steps:
1818
- name: Checkout code

tests/CloudEventSdkCompliantTest.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,12 @@
2727

2828
/**
2929
* @group gcf-framework
30-
* @group newtest
3130
*/
3231
class CloudEventSdkCompliantTest extends TestCase
3332
{
3433
private CloudEvent $cloudevent;
3534

36-
function setUp(): void
35+
public function setUp(): void
3736
{
3837
$this->cloudevent = new CloudEvent(
3938
'1413058901901494',
@@ -57,7 +56,6 @@ function setUp(): void
5756

5857
public function testJsonSerialize(): void
5958
{
60-
6159
$wrappedEvent = new CloudEventSdkCompliant($this->cloudevent);
6260

6361
$want = '{

0 commit comments

Comments
 (0)