We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab03f4d commit d5c7618Copy full SHA for d5c7618
.github/workflows/ci.yml
@@ -6,10 +6,14 @@ on:
6
7
jobs:
8
PHPUnit:
9
- name: PHPUnit (PHP ${{ matrix.php }})
+ name: PHPUnit (PHP ${{ matrix.php }} ${{ matrix.event-loop }})
10
runs-on: ubuntu-20.04
11
strategy:
12
matrix:
13
+ event-loop:
14
+ - ''
15
+ - 'event-beta'
16
+ - 'uv-beta'
17
php:
18
- 8.1
19
- 8.0
@@ -28,6 +32,7 @@ jobs:
28
32
with:
29
33
php-version: ${{ matrix.php }}
30
34
coverage: xdebug
35
+ extensions: ${{ matrix.event-loop }}
31
36
- run: composer install
37
- run: vendor/bin/phpunit --coverage-text
38
if: ${{ matrix.php >= 7.3 }}
0 commit comments