1 parent 711a801 commit 76045d2Copy full SHA for 76045d2
1 file changed
.github/workflows/ci.yml
@@ -19,10 +19,15 @@ jobs:
19
with:
20
php-version: '8.5'
21
extensions: mbstring, json
22
- coverage: none
23
24
- name: Install dependencies
25
run: composer install --prefer-dist --no-progress
26
27
- - name: PHPUnit
28
- run: composer test
+ - name: PHPUnit version
+ run: phpunit --version
+
29
+ - name: PHPUnit (no config)
30
+ run: php -d error_reporting=-1 vendor/bin/phpunit --no-configuration --bootstrap vendor/autoload.php tests/Unit --no-coverage 2>&1
31
32
+ - name: PHPUnit (with config)
33
+ run: php -d error_reporting=-1 vendor/bin/phpunit --no-coverage 2>&1
0 commit comments