We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83692d9 commit c76d82dCopy full SHA for c76d82d
.github/workflows/ci.yml
@@ -11,9 +11,10 @@ jobs:
11
strategy:
12
matrix:
13
os:
14
- - ubuntu-20.04
15
- - windows-2019
+ - ubuntu-22.04
+ - windows-2022
16
php:
17
+ - 8.2
18
- 8.1
19
- 8.0
20
- 7.4
phpunit.xml.dist
@@ -5,7 +5,8 @@
5
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
6
bootstrap="vendor/autoload.php"
7
colors="true"
8
- cacheResult="false">
+ cacheResult="false"
9
+ convertDeprecationsToExceptions="true">
10
<testsuites>
<testsuite name="SQLite React Test Suite">
<directory>./tests/</directory>
@@ -17,4 +18,7 @@
<directory>./src/</directory>
</include>
</coverage>
21
+ <php>
22
+ <ini name="error_reporting" value="-1" />
23
+ </php>
24
</phpunit>
0 commit comments