File tree Expand file tree Collapse file tree 2 files changed +16
-9
lines changed Expand file tree Collapse file tree 2 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 7
7
jobs :
8
8
PHPUnit :
9
9
name : PHPUnit (PHP ${{ matrix.php }})
10
- runs-on : ubuntu-20 .04
10
+ runs-on : ubuntu-22 .04
11
11
strategy :
12
12
matrix :
13
13
php :
14
+ - 8.2
15
+ - 8.1
14
16
- 8.0
15
17
- 7.4
16
18
- 7.3
22
24
- 5.4
23
25
- 5.3
24
26
steps :
25
- - uses : actions/checkout@v2
27
+ - uses : actions/checkout@v3
26
28
- uses : shivammathur/setup-php@v2
27
29
with :
28
30
php-version : ${{ matrix.php }}
@@ -35,12 +37,16 @@ jobs:
35
37
36
38
PHPUnit-hhvm :
37
39
name : PHPUnit (HHVM)
38
- runs-on : ubuntu-18 .04
40
+ runs-on : ubuntu-22 .04
39
41
continue-on-error : true
40
42
steps :
41
- - uses : actions/checkout@v2
42
- - uses : azjezz/setup-hhvm@v1
43
+ - uses : actions/checkout@v3
44
+ - run : cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM
45
+ - name : Run hhvm composer.phar install
46
+ uses : docker://hhvm/hhvm:3.30-lts-latest
43
47
with :
44
- version : lts-3.30
45
- - run : hhvm $(which composer) install
46
- - run : hhvm vendor/bin/phpunit
48
+ args : hhvm composer.phar install
49
+ - name : Run hhvm vendor/bin/phpunit
50
+ uses : docker://hhvm/hhvm:3.30-lts-latest
51
+ with :
52
+ args : hhvm vendor/bin/phpunit
Original file line number Diff line number Diff line change 4
4
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5
5
xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd"
6
6
bootstrap =" vendor/autoload.php"
7
+ cacheResult =" false"
7
8
colors =" true"
8
- cacheResult = " false " >
9
+ convertDeprecationsToExceptions = " true " >
9
10
<testsuites >
10
11
<testsuite name =" mDNS React Test Suite" >
11
12
<directory >./tests/</directory >
You can’t perform that action at this time.
0 commit comments