Skip to content

Commit d40e7dd

Browse files
authored
Test against PHP 8.4 (#20)
* Test against newer PHP versions * Bump actions/checkout version * Do not use E_STRICT constant which is deprecated in PHP 8.4 * Fix supported PHP version
1 parent d5fd5ba commit d40e7dd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
php: [8.0, 8.1]
17+
php: [8.0, 8.1, 8.2, 8.3, 8.4]
1818

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v4
2222

2323
- name: Setup PHP
2424
uses: shivammathur/setup-php@v2

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ An AMQP module for Codeception.
99

1010
## Requirements
1111

12-
* `PHP 7.4` or higher.
12+
* `PHP 8.0` or higher.
1313

1414
## Installation
1515

tests/unit.suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
error_level: "E_ALL | E_STRICT"
1+
error_level: "E_ALL"
22
class_name: UnitTester

0 commit comments

Comments
 (0)