Skip to content

Commit

Permalink
Added github action workflow to upload code coverage to Scrutinizer
Browse files Browse the repository at this point in the history
  • Loading branch information
manicki committed Sep 2, 2024
1 parent 0d8db56 commit 910ac98
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/scrutinize.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Generate and upload test coverage
on:
workflow_run:
workflows: ['Lint and Test']
types: [completed]

jobs:
scrutinize:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
- name: Cache Composer packages
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php_version}}-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
uses: php-actions/composer@v6
- name: Generate PHP tests coverage
run: XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.clover
- name: Upload Scrutinizer coverage
uses: sudo-bot/action-scrutinizer@latest
with:
cli-args: "--format=php-clover ./clover.xml"

0 comments on commit 910ac98

Please sign in to comment.