Skip to content

Commit ac17834

Browse files
PHP 8.4 support (#225)
* PHP 8.4 support * Update tests.yml * Update tests.yml
1 parent d1c05fd commit ac17834

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/tests.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ on:
77

88
jobs:
99
tests:
10-
name: Test PHP ${{ matrix.php-version }} ${{ matrix.name }}
11-
runs-on: ubuntu-latest
10+
name: Test PHP ${{ matrix.php }} ${{ matrix.name }}
11+
runs-on: ubuntu-24.04
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php-version: ['8.1', '8.2', '8.3']
15+
php: ['8.1', '8.2', '8.3', '8.4']
1616
composer-flags: ['']
1717
name: ['']
1818
include:
19-
- php: 8.0
19+
- php: '8.0'
2020
composer-flags: '--prefer-lowest'
2121
name: '(prefer lowest dependencies)'
2222

2323
steps:
2424
- name: Checkout Code
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2626

2727
- name: Setup PHP
2828
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)