Skip to content

Commit

Permalink
let's test something
Browse files Browse the repository at this point in the history
  • Loading branch information
mollux committed Feb 12, 2023
1 parent 95a1d02 commit 4945f72
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ on:
jobs:
phpunit:
runs-on: ubuntu-20.04
name: PHPUnit ${{ matrix.php-version }} ${{ matrix.mautic_version }}
name: PHPUnit ${{ matrix.php_version }} ${{ matrix.mautic_version }}
strategy:
matrix:
mautic_version: ["5.x-dev", "4.x-dev"]
php_version: ["7.4", "8.0"]
php_version: ["7.4", "8.0", "8.1"]

services:
mysql:
Expand Down
15 changes: 14 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="tests/bootstrap.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
failOnRisky="true"
failOnWarning="true"
>
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">lib</directory>
Expand Down

0 comments on commit 4945f72

Please sign in to comment.