File tree Expand file tree Collapse file tree 3 files changed +26
-30
lines changed Expand file tree Collapse file tree 3 files changed +26
-30
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ jobs :
8+ PHPUnit :
9+ name : PHPUnit (PHP ${{ matrix.php }})
10+ runs-on : ubuntu-20.04
11+ strategy :
12+ matrix :
13+ php :
14+ - 7.2
15+ - 7.1
16+ - 7.0
17+ steps :
18+ - uses : actions/checkout@v2
19+ - uses : shivammathur/setup-php@v2
20+ with :
21+ php-version : ${{ matrix.php }}
22+ coverage : xdebug
23+ - run : composer install
24+ - run : vendor/bin/phpunit --coverage-text
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# A PSR-15 middleware adapter for react/http
22
3+ [ ![ CI status] ( https://github.com/friends-of-reactphp/http-middleware-psr15-adapter/workflows/CI/badge.svg )] ( https://github.com/friends-of-reactphp/http-middleware-psr15-adapter/actions )
4+
35Wraps PSR-15 middleware into coroutines using [ ` RecoilPHP ` ] ( https://github.com/recoilphp ) making them usable within ` react/http ` as middleware.
46
57# Install
You can’t perform that action at this time.
0 commit comments