Skip to content

Issue #110: Use regular closure to make code more readable. #157

Issue #110: Use regular closure to make code more readable.

Issue #110: Use regular closure to make code more readable. #157

Workflow file for this run

name: CI
on:
- push
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.3]
composer-flags: ['--prefer-lowest', '']
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json
coverage: none
- run: composer install --prefer-dist --no-interaction --no-progress
- run: composer update --no-progress ${{ matrix.composer-flags }}
- run: vendor/bin/phpunit