Skip to content

build(deps-dev): bump friendsofphp/php-cs-fixer from 3.46.0 to 3.47.0 #430

build(deps-dev): bump friendsofphp/php-cs-fixer from 3.46.0 to 3.47.0

build(deps-dev): bump friendsofphp/php-cs-fixer from 3.46.0 to 3.47.0 #430

Workflow file for this run

name: "lint"
on:
push:
paths-ignore:
- "doc/**"
pull_request:
paths-ignore:
- "doc/**"
jobs:
tests:
name: "Lint"
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- "8.2"
- "latest"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
extensions: "intl"
ini-values: "memory_limit=-1, error_reporting=E_ALL, display_errors=On"
php-version: "${{ matrix.php-version }}"
- name: "Lint PHP files"
run: "find src/ -type f -name '*.php' -print0 | xargs -0 -L1 -P4 -- php -l -f"