Skip to content

Bump twig/twig from 3.8.0 to 3.14.0 #808

Bump twig/twig from 3.8.0 to 3.14.0

Bump twig/twig from 3.8.0 to 3.14.0 #808

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"