Skip to content

Update CHANGELOG for version 2.1.0 #55

Update CHANGELOG for version 2.1.0

Update CHANGELOG for version 2.1.0 #55

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
PHPUnit:
name: PHPUnit (PHP ${{ matrix.php }} on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
- windows-latest
php:
- 8.4
- 8.3
- 8.2
- 8.1
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
tools: composer
cache: composer
- run: composer install --prefer-dist --no-interaction --no-progress
- run: vendor/bin/phpunit --coverage-text