Skip to content

Commit 933fe0b

Browse files
committed
fix: use invocable controllers with DI with bind by contracts
1 parent f028ec8 commit 933fe0b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/run-tests-with-coverage.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@ jobs:
2020
- name: Install Dependencies
2121
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
2222
- name: Execute unit tests via PHPUnit with coverage
23-
run: vendor/bin/phpunit --coverage-clover build/logs/clover.xml
23+
run: vendor/bin/phpunit --coverage-clover build/logs/clover-${{ matrix.php-version }}.xml
2424
- name: Upload coverage results to Coveralls
2525
env:
2626
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2727
run: |
2828
composer global require php-coveralls/php-coveralls
29-
php-coveralls --coverage_clover=build/logs/clover.xml -v
29+
php-coveralls --coverage_clover=build/logs/clover-${{ matrix.php-version }}.xml -v
30+
31+
32+

0 commit comments

Comments
 (0)