Skip to content

Commit abef98c

Browse files
committed
update config phpunit
1 parent f12eb96 commit abef98c

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
# Check-out repository under GitHub workspace
1717
# https://github.com/actions/checkout
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
# Step's name
2020
- name: Setup PHP
2121
# Action gives to setup the PHP environment to test application

phpunit.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="true" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
backupGlobals="false"
5+
colors="true"
6+
processIsolation="false"
7+
stopOnFailure="true"
8+
bootstrap="vendor/autoload.php"
9+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd"
10+
cacheResult="false"
11+
backupStaticProperties="false">
312
<source>
413
<include>
514
<directory suffix=".php">./src</directory>

0 commit comments

Comments
 (0)