File tree Expand file tree Collapse file tree 4 files changed +50
-30
lines changed Expand file tree Collapse file tree 4 files changed +50
-30
lines changed Original file line number Diff line number Diff line change 11/.gitattributes export-ignore
2+ /.github /workflows / export-ignore
23/.gitignore export-ignore
3- /.travis.yml export-ignore
44/examples / export-ignore
55/phpunit.xml.dist export-ignore
66/phpunit.xml.legacy export-ignore
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+ - 8.0
14+ - 7.4
15+ - 7.3
16+ - 7.2
17+ - 7.1
18+ - 7.0
19+ - 5.6
20+ - 5.5
21+ - 5.4
22+ - 5.3
23+ steps :
24+ - uses : actions/checkout@v2
25+ - name : Setup PHP
26+ uses : shivammathur/setup-php@v2
27+ with :
28+ php-version : ${{ matrix.php }}
29+ - run : composer install
30+ - run : vendor/bin/phpunit --coverage-text
31+ if : ${{ matrix.php >= 7.3 }}
32+ - run : vendor/bin/phpunit --coverage-text -c phpunit.xml.legacy
33+ if : ${{ matrix.php < 7.3 }}
34+
35+ PHPUnit-hhvm :
36+ name : PHPUnit (HHVM)
37+ runs-on : ubuntu-18.04
38+ steps :
39+ - uses : actions/checkout@v2
40+ - uses : azjezz/setup-hhvm@v1
41+ with :
42+ version : lts-3.30
43+ - run : hhvm $(which composer) install
44+ - run : hhvm vendor/bin/phpunit
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- # clue/reactphp-zenity [ ![ Build Status] ( https://travis-ci.org/clue/reactphp-zenity.svg?branch=master )] ( https://travis-ci.org/clue/reactphp-zenity )
1+ # clue/reactphp-zenity
2+
3+ [ ![ CI status] ( https://github.com/clue/reactphp-zenity/workflows/CI/badge.svg )] ( https://github.com/clue/reactphp-zenity/actions )
24
35Zenity allows you to build graphical desktop (GUI) applications in PHP, built on top of [ ReactPHP] ( https://reactphp.org/ ) .
46
@@ -310,8 +312,9 @@ $ composer require clue/zenity-react:^0.4.3
310312See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
311313
312314This project aims to run on any platform and thus does not require any PHP
313- extensions and supports running on legacy PHP 5.3 through current PHP 7 + and
315+ extensions and supports running on legacy PHP 5.3 through current PHP 8 + and
314316HHVM.
317+ It's * highly recommended to use PHP 7+* for this project.
315318
316319Obviously, this library requires the Zenity binary itself.
317320Zenity already ships with Ubuntu-based distributions and should not require any installation there.
You can’t perform that action at this time.
0 commit comments