Skip to content

Commit 3d27c0b

Browse files
committed
action: phpunit
1 parent da5df7b commit 3d27c0b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/phpunit.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,13 @@ jobs:
2121
uses: shivammathur/setup-php@v2
2222
with:
2323
php-version: ${{ matrix.php-version }}
24-
coverage: none
24+
coverage: xdebug
2525

2626
- name: Install dependencies
27-
run: composer install --no-progress --prefer-dist
27+
run: composer install --no-progress --no-suggest --prefer-dist
2828

29-
- name: Run PHPUnit tests/*
30-
run: vendor/bin/phpunit tests/*
29+
- name: Configure Xdebug
30+
run: echo "xdebug.mode=coverage" >> $GITHUB_ENV
31+
32+
- name: Run PHPUnit
33+
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)