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 3af71ba commit 17ae42fCopy full SHA for 17ae42f
.github/workflows/build.yml
@@ -189,10 +189,9 @@ jobs:
189
php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude="~vendor~" vendor/bin/phpunit -c tests/phpunit.xml tests/PHPStan
190
191
- name: "Coveralls"
192
- uses: "coverallsapp/github-action@master"
193
- with:
194
- github-token: "${{ secrets.GITHUB_TOKEN }}"
195
- path-to-lcov: "tests/tmp/clover.xml"
+ run: |
+ composer require php-coveralls/php-coveralls --dev && \
+ vendor/bin/php-coveralls --verbose --coverage_clover=tests/tmp/clover.xml
196
197
static-analysis:
198
name: "PHPStan"
0 commit comments