Skip to content

Bump symfony/process from 7.0.8 to 7.1.7 #827

Bump symfony/process from 7.0.8 to 7.1.7

Bump symfony/process from 7.0.8 to 7.1.7 #827

Workflow file for this run

name: "PHP Lint"
on:
- push
- pull_request
jobs:
tests:
name: "Lint"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
extensions: "intl"
php-version: "8.3"
- name: "Lint PHP files"
run: "find src/ -type f -name '*.php' -print0 | xargs -0 -L1 -P4 -- php -l -f"