Skip to content

Commit 9d43363

Browse files
authored
Support PHP 8.4 (#668)
Resolve #641 To support PHP 8.4, I've added tests for PHP 8.4. I will add `Run checks on PHP 8.4` jobs as required to Settings. FYI: The deprecated usages reported in #625 can not be checked in this test if it is used in auto-generated files. Because auto-generated files have a lot of phpstan error included others than this, so we use phpstan only in non auto-generated files.
1 parent d012e5c commit 9d43363

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/php-checks.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: [8.1, 8.2, 8.3]
15+
php: [8.1, 8.2, 8.3, 8.4]
1616
include:
1717
- php: 8.1
1818
analysis: true
1919
- php: 8.2
2020
analysis: true
2121
- php: 8.3
2222
analysis: true
23+
- php: 8.4
24+
analysis: true
2325

2426
steps:
2527
- name: Checkout

0 commit comments

Comments
 (0)