File tree Expand file tree Collapse file tree 3 files changed +36
-2
lines changed
Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Original file line number Diff line number Diff line change 4545 env :
4646 XDEBUG_MODE : coverage
4747 run : ./vendor/bin/phpunit -c phpunit.xml --coverage-clover clover.xml
48- if : (!contains(matrix.php-versions, '7.')) && (matrix.php-versions != '8.0')
48+ if : (matrix.php-versions == '8.1')
49+
50+ - name : Tests (PHPUnit Latest)
51+ env :
52+ XDEBUG_MODE : coverage
53+ run : ./vendor/bin/phpunit -c phpunit.xml --coverage-clover clover.xml
54+ if : (!contains(matrix.php-versions, '7.')) && (matrix.php-versions != '8.0') && (matrix.php-versions != '8.1')
4955
5056 - name : Coveralls Test Submission
5157 if : ${{ github.ref == 'refs/heads/master' }}
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"
3+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.4/phpunit.xsd"
4+ bootstrap =" vendor/autoload.php" executionOrder =" depends,defects"
5+ beStrictAboutOutputDuringTests =" true"
6+ beStrictAboutTodoAnnotatedTests =" true"
7+ beStrictAboutTestsThatDoNotTestAnything =" false"
8+ colors =" true"
9+ displayDetailsOnTestsThatTriggerDeprecations =" true"
10+ displayDetailsOnTestsThatTriggerErrors =" true"
11+ displayDetailsOnTestsThatTriggerNotices =" true"
12+ displayDetailsOnTestsThatTriggerWarnings =" true"
13+ failOnDeprecation =" true"
14+ failOnNotice =" true"
15+ failOnRisky =" true"
16+ failOnWarning =" true" >
17+ <testsuites >
18+ <testsuite name =" default" >
19+ <directory suffix =" Tests.php" >tests</directory >
20+ </testsuite >
21+ </testsuites >
22+ <coverage pathCoverage =" true" ignoreDeprecatedCodeUnits =" true" disableCodeCoverageIgnore =" true" />
23+ <source >
24+ <include >
25+ <directory >src</directory >
26+ </include >
27+ </source >
28+ </phpunit >
You can’t perform that action at this time.
0 commit comments