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 d8560d9 commit d2bbde7Copy full SHA for d2bbde7
.github/workflows/ci.yml
@@ -217,7 +217,13 @@ jobs:
217
uses: shivammathur/setup-php@v2
218
with:
219
php-version: '8.3'
220
+ extensions: xdebug
221
- name: Install dependencies
222
run: composer install --prefer-dist --no-progress
- - name: Run tests
223
- run: vendor/bin/phpunit || echo "No tests found"
+ - name: Run tests and generate code coverage
224
+ run: vendor/bin/phpunit || echo "No tests found"
225
+ - name: Upload coverage to Coveralls
226
+ uses: coverallsapp/github-action@v2
227
+ with:
228
+ github-token: ${{ secrets.GITHUB_TOKEN }}
229
+ path-to-lcov: coverage/coverage.xml
0 commit comments