Skip to content

Commit e6e11ab

Browse files
authored
Merge pull request #36 from clue-labs/php8.5
Run tests on PHP 8.5 and update test environment
2 parents d9cefea + 71f0ae6 commit e6e11ab

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ on:
77
jobs:
88
PHPUnit:
99
name: PHPUnit (PHP ${{ matrix.php }})
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
strategy:
1212
matrix:
1313
php:
14+
- 8.5
15+
- 8.4
1416
- 8.3
1517
- 8.2
1618
- 8.1
@@ -25,7 +27,7 @@ jobs:
2527
- 5.4
2628
- 5.3
2729
steps:
28-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v6
2931
- uses: shivammathur/setup-php@v2
3032
with:
3133
php-version: ${{ matrix.php }}
@@ -35,10 +37,10 @@ jobs:
3537

3638
PHPUnit-hhvm:
3739
name: PHPUnit (HHVM)
38-
runs-on: ubuntu-22.04
40+
runs-on: ubuntu-24.04
3941
continue-on-error: true
4042
steps:
41-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v6
4244
- run: cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM
4345
- name: Run hhvm composer.phar install
4446
uses: docker://hhvm/hhvm:3.30-lts-latest

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
],
1313
"require": {
1414
"php": ">=5.3",
15-
"react/stream": "^1.2"
15+
"react/stream": "^1.4"
1616
},
1717
"require-dev": {
1818
"phpunit/phpunit": "^9.6 || ^8.5 || ^5.7 || ^4.8.36",
19-
"react/child-process": "^0.6.3",
20-
"react/event-loop": "^1.2"
19+
"react/child-process": "^0.6.7",
20+
"react/event-loop": "^1.6"
2121
},
2222
"autoload": {
2323
"psr-4": {

0 commit comments

Comments
 (0)