File tree 6 files changed +16
-5
lines changed
6 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 63
63
- name : Test
64
64
run : make test
65
65
66
+ test-8-1 :
67
+ runs-on : ubuntu-latest
68
+ name : Test PHP 8.1
69
+ steps :
70
+ - name : Checkout
71
+ uses : actions/checkout@v2
72
+ - name : Set up PHP 8.1
73
+ uses : shivammathur/setup-php@v2
74
+ with :
75
+ php-version : ' 8.1'
76
+ - name : Composer
77
+ run : make install
78
+ - name : Test
79
+ run : make test
80
+
81
+
66
82
cs-check :
67
83
runs-on : ubuntu-latest
68
84
name : Code standard
Original file line number Diff line number Diff line change 13
13
14
14
class ClientTest extends TestCase
15
15
{
16
-
17
16
public function setUp (): void
18
17
{
19
18
error_reporting (-1 );
Original file line number Diff line number Diff line change 13
13
14
14
class ExceptionTest extends TestCase
15
15
{
16
-
17
16
public function setUp (): void
18
17
{
19
18
error_reporting (-1 );
Original file line number Diff line number Diff line change 14
14
15
15
class MessageTest extends TestCase
16
16
{
17
-
18
17
public function setUp (): void
19
18
{
20
19
error_reporting (-1 );
Original file line number Diff line number Diff line change 13
13
14
14
class ServerTest extends TestCase
15
15
{
16
-
17
16
public function setUp (): void
18
17
{
19
18
error_reporting (-1 );
Original file line number Diff line number Diff line change 8
8
9
9
class MockSocket
10
10
{
11
-
12
11
private static $ queue = [];
13
12
private static $ stored = [];
14
13
private static $ asserter ;
You can’t perform that action at this time.
0 commit comments