Skip to content

Commit f3e03ec

Browse files
committed
github actions updates
1 parent 23150b8 commit f3e03ec

File tree

2 files changed

+23
-28
lines changed

2 files changed

+23
-28
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,5 @@ yarn-error.log
2828
/composer.lock
2929
/reports
3030
/build
31+
.phpunit.cache
32+
phpunit.xml.bak

phpunit.xml

Lines changed: 21 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,23 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit
3-
backupGlobals="false"
4-
backupStaticAttributes="false"
5-
bootstrap="vendor/autoload.php"
6-
colors="true"
7-
convertErrorsToExceptions="true"
8-
convertNoticesToExceptions="true"
9-
convertWarningsToExceptions="true"
10-
processIsolation="false"
11-
stopOnFailure="false">
12-
<coverage>
13-
<include>
14-
<directory suffix=".php">src/</directory>
15-
</include>
16-
<report>
17-
<clover outputFile="./build/logs/clover.xml"/>
18-
<html outputDirectory="./reports/"/>
19-
</report>
20-
</coverage>
21-
<testsuites>
22-
<testsuite name="Date To Words Test Suite">
23-
<directory>Tests</directory>
24-
</testsuite>
25-
</testsuites>
26-
<logging/>
27-
<php>
28-
<env name="APP_ENV" value="testing"/>
29-
</php>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.3/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3+
<coverage>
4+
<report>
5+
<clover outputFile="./build/logs/clover.xml"/>
6+
<html outputDirectory="./reports/"/>
7+
</report>
8+
</coverage>
9+
<testsuites>
10+
<testsuite name="Date To Words Test Suite">
11+
<directory>Tests</directory>
12+
</testsuite>
13+
</testsuites>
14+
<logging/>
15+
<php>
16+
<env name="APP_ENV" value="testing"/>
17+
</php>
18+
<source>
19+
<include>
20+
<directory suffix=".php">src/</directory>
21+
</include>
22+
</source>
3023
</phpunit>

0 commit comments

Comments
 (0)