Skip to content

Commit

Permalink
Merge pull request #150 from Textalk/v1.5-master
Browse files Browse the repository at this point in the history
PHP 8.1
  • Loading branch information
Sören Jensen authored Feb 25, 2022
2 parents 846542f + 3017304 commit 569e7d4
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,22 @@ jobs:
- name: Test
run: make test

test-8-1:
runs-on: ubuntu-latest
name: Test PHP 8.1
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up PHP 8.1
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- name: Composer
run: make install
- name: Test
run: make test


cs-check:
runs-on: ubuntu-latest
name: Code standard
Expand Down
1 change: 0 additions & 1 deletion tests/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

class ClientTest extends TestCase
{

public function setUp(): void
{
error_reporting(-1);
Expand Down
1 change: 0 additions & 1 deletion tests/ExceptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

class ExceptionTest extends TestCase
{

public function setUp(): void
{
error_reporting(-1);
Expand Down
1 change: 0 additions & 1 deletion tests/MessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

class MessageTest extends TestCase
{

public function setUp(): void
{
error_reporting(-1);
Expand Down
1 change: 0 additions & 1 deletion tests/ServerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

class ServerTest extends TestCase
{

public function setUp(): void
{
error_reporting(-1);
Expand Down
1 change: 0 additions & 1 deletion tests/mock/MockSocket.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

class MockSocket
{

private static $queue = [];
private static $stored = [];
private static $asserter;
Expand Down

0 comments on commit 569e7d4

Please sign in to comment.