File tree Expand file tree Collapse file tree 3 files changed +31
-21
lines changed
Expand file tree Collapse file tree 3 files changed +31
-21
lines changed Original file line number Diff line number Diff line change 4646 - name : Install dependencies
4747 if : steps.composer-cache.outputs.cache-hit != 'true'
4848 run : |
49- ${{ matrix.php >= 8.1 && 'composer require --no-update phpunit/phpunit:^8.5.14 --no-interaction' || '' }}
50- composer update --prefer-dist ${{ matrix.setup != 'next' && matrix.setup != 'no-calendar' && format('--prefer-{0}', matrix.setup) || '' }} --no-progress --no-suggest ${{ matrix.php >= 8.1 && '--ignore-platform-req=php' || '' }}
49+ composer update --prefer-dist ${{ matrix.setup != 'next' && matrix.setup != 'no-calendar' && format('--prefer-{0}', matrix.setup) || '' }} --no-progress --no-suggest
5150
5251 - name : Fix PHP compatibility
5352 if : matrix.php >= '8.1'
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.5/phpunit.xsd"
4+ bootstrap =" tests/bootstrap.php"
5+ cacheDirectory =" .phpunit.cache"
6+ executionOrder =" depends,defects"
7+ beStrictAboutOutputDuringTests =" true"
8+ displayDetailsOnPhpunitDeprecations =" true"
9+ failOnPhpunitDeprecation =" true"
10+ failOnRisky =" true"
11+ failOnWarning =" true" >
12+ <testsuites >
13+ <testsuite name =" default" >
14+ <directory >tests</directory >
15+ </testsuite >
16+ </testsuites >
17+
18+ <source restrictDeprecations =" true" restrictNotices =" true" restrictWarnings =" true" >
19+ <include >
20+ <directory >src/Cmixin</directory >
21+ </include >
22+ </source >
23+
24+ <!-- Backward compatibility -->
25+ <filter >
26+ <whitelist >
27+ <directory >src/Cmixin</directory >
28+ </whitelist >
29+ </filter >
30+ </phpunit >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments