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 80f5d73 commit f35a7bbCopy full SHA for f35a7bb
.github/workflows/ci.yml
@@ -20,3 +20,17 @@ jobs:
20
coverage: xdebug
21
- run: composer install
22
- run: vendor/bin/phpunit --coverage-text
23
+ benchmark-async:
24
+ name: "Benchmark: async (PHP ${{ matrix.php }})"
25
+ runs-on: ubuntu-20.04
26
+ strategy:
27
+ matrix:
28
+ php:
29
+ - 8.1
30
+ steps:
31
+ - uses: actions/checkout@v2
32
+ - uses: shivammathur/setup-php@v2
33
+ with:
34
+ php-version: ${{ matrix.php }}
35
+ - run: composer install
36
+ - run: time php examples/90-async-benchmark.php
0 commit comments