Skip to content

Enabled code coverage in GitHub actions #26

Enabled code coverage in GitHub actions

Enabled code coverage in GitHub actions #26

Workflow file for this run

name: CI
on: [push]
jobs:
PHPUnit:
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- '8.1'
- '8.2'
- '8.3'
coverage-driver:
- pcov
- xdebug3
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
- name: PHPUnit Tests
uses: php-actions/phpunit@master
with:
version: 10
bootstrap: vendor/autoload.php
configuration: phpunit.xml.dist
args: --coverage-text