File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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+ runs-on : ubuntu-latest
10+ strategy :
11+ matrix :
12+ php :
13+ - 7.4
14+ - 7.3
15+ - 7.2
16+ - 7.1
17+ - 7.0
18+ - 5.6
19+ - 5.5
20+ - 5.4
21+ steps :
22+ - uses : actions/checkout@v2
23+ - name : Setup PHP
24+ uses : shivammathur/setup-php@v2
25+ with :
26+ php-version : ${{ matrix.php }}
27+ - run : composer install
28+ - run : vendor/bin/phpunit --coverage-text
29+ if : matrix.php >= 7.3
30+ - run : vendor/bin/phpunit --coverage-text -c phpunit.xml.legacy
31+ if : matrix.php < 7.3
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- # clue/reactphp-eventsource [ ![ Build Status] ( https://travis-ci.org/clue/reactphp-eventsource.svg?branch=master )] ( https://travis-ci.org/clue/reactphp-eventsource )
1+ # clue/reactphp-eventsource
2+
3+ [ ![ CI status] ( https://github.com/clue/reactphp-eventsource/workflows/CI/badge.svg )] ( https://github.com/clue/reactphp-eventsource/actions )
24
35Event-driven EventSource client, receiving streaming messages from any HTML5 Server-Sent Events (SSE) server,
46built on top of [ ReactPHP] ( https://reactphp.org/ ) .
You can’t perform that action at this time.
0 commit comments