File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 31
31
testbench : 5.*
32
32
- laravel : 6.*
33
33
testbench : 4.*
34
+ - php : 8.2
35
+ unitconfig : phpunit_gt_81.xml
36
+ - php : 8.1
37
+ unitconfig : phpunit_gt_81.xml
38
+ - php : 8.0
39
+ unitconfig : phpunit.xml
40
+ - php : 7.4
41
+ unitconfig : phpunit.xml
34
42
exclude :
35
43
- laravel : 6.*
36
44
php : 8
96
104
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
97
105
98
106
- name : Run tests
99
- run : " vendor/bin/phpunit -c phpunit.xml --coverage-clover=coverage.clover"
107
+ run : |
108
+ vendor/bin/phpunit -c ${{ matrix.unitconfig }} --coverage-clover=coverage.clover
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" backupGlobals =" false" bootstrap =" vendor/autoload.php" colors =" true" processIsolation =" true" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/11.0/phpunit.xsd" >
3
+ <coverage >
4
+ <report >
5
+ <clover outputFile =" tests/_reports/logs/clover.xml" />
6
+ <html outputDirectory =" tests/_reports/coverage" lowUpperBound =" 35" highLowerBound =" 70" />
7
+ </report >
8
+ </coverage >
9
+ <testsuites >
10
+ <testsuite name =" Application Test Suite" >
11
+ <directory suffix =" Test.php" >./tests</directory >
12
+ </testsuite >
13
+ </testsuites >
14
+ <logging >
15
+ <testdoxText outputFile =" tests/_reports/testdox/executed.txt" />
16
+ </logging >
17
+ <php >
18
+ <env name =" APP_ENV" value =" testing" />
19
+ </php >
20
+ <source >
21
+ <include >
22
+ <directory suffix =" .php" >./src</directory >
23
+ </include >
24
+ <exclude >
25
+ <directory suffix =" .php" >./src/Boleto/Render/view</directory >
26
+ </exclude >
27
+ </source >
28
+ </phpunit >
You can’t perform that action at this time.
0 commit comments