Skip to content

Bump friendsofphp/php-cs-fixer from 3.88.2 to 3.94.2 #38

Bump friendsofphp/php-cs-fixer from 3.88.2 to 3.94.2

Bump friendsofphp/php-cs-fixer from 3.88.2 to 3.94.2 #38

Workflow file for this run

name: PHPUnit
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Run tests (PHP ${{ matrix.php }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '8.3', '8.4' ]
steps:
- name: Checkout Code
uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, pdo, sqlite, pdo_sqlite
ini-values: max_execution_time=180
- name: Install Composer Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Run tests via PHPUnit
run: vendor/bin/phpunit