Skip to content

test: add failing test for diff triming the data (#72) #114

test: add failing test for diff triming the data (#72)

test: add failing test for diff triming the data (#72) #114

Workflow file for this run

name: CI
on: [push]
jobs:
phpcs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP environment
uses: shivammathur/setup-php@v2
- name: Install dependencies
run: composer install
- name: PHPCSFixer check
run: composer check-style
phpunit:
strategy:
matrix:
php_version: [8.1, 8.2]
dependency_version: ["highest", "lowest"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP environment
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}
coverage: xdebug
- name: Install dependencies
uses: ramsey/composer-install@v3
with:
dependency-versions: ${{ matrix.dependency_version }}
- name: PHPUnit check
run: ./vendor/bin/phpunit --coverage-text