Skip to content

Fixed linebreaks not beeing counted #31

Fixed linebreaks not beeing counted

Fixed linebreaks not beeing counted #31

Workflow file for this run

name: PHPUnit
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['7.4', '8.0', '8.1']
phpunit-versions: ['latest']
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
tools: cs2pr, phpunit:${{ matrix.phpunit-versions }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run PHPUnit
run: php vendor/bin/phpunit --coverage-text