Skip to content

Commit 4945f72

Browse files
committed
let's test something
1 parent 95a1d02 commit 4945f72

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ on:
1818
jobs:
1919
phpunit:
2020
runs-on: ubuntu-20.04
21-
name: PHPUnit ${{ matrix.php-version }} ${{ matrix.mautic_version }}
21+
name: PHPUnit ${{ matrix.php_version }} ${{ matrix.mautic_version }}
2222
strategy:
2323
matrix:
2424
mautic_version: ["5.x-dev", "4.x-dev"]
25-
php_version: ["7.4", "8.0"]
25+
php_version: ["7.4", "8.0", "8.1"]
2626

2727
services:
2828
mysql:

phpunit.xml.dist

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" colors="false" backupGlobals="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
backupGlobals="false"
4+
backupStaticAttributes="false"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="false"
11+
bootstrap="tests/bootstrap.php"
12+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
13+
failOnRisky="true"
14+
failOnWarning="true"
15+
>
316
<coverage includeUncoveredFiles="true">
417
<include>
518
<directory suffix=".php">lib</directory>

0 commit comments

Comments
 (0)