Skip to content

PHP Lint

PHP Lint #179

Workflow file for this run

name: "PHP Lint"
on:
- push
- pull_request
jobs:
tests:
name: "Lint"
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # 2.37.0
with:
coverage: "none"
extensions: "intl"
php-version: "8.4"
- name: "Lint PHP files"
run: "find src/ -type f -name '*.php' -print0 | xargs -0 -L1 -P4 -- php -l -f"