Skip to content

Pass row data as second argument of the "formatter" column option #250

Pass row data as second argument of the "formatter" column option

Pass row data as second argument of the "formatter" column option #250

Workflow file for this run

name: Testing
on:
- push
- pull_request
- workflow_dispatch
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3']
dependency-version: ['lowest', 'highest']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: dom fileinfo filter libxml xmlreader zip gd
- name: Install dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependency-version }}
- name: Run PHPUnit
run: vendor/bin/phpunit