Skip to content

Reword the two remaining count settings to match #16

Reword the two remaining count settings to match

Reword the two remaining count settings to match #16

Workflow file for this run

name: PHP Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.4', '8.1', '8.3', '8.4' ]
steps:
- uses: actions/checkout@v4
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Syntax check
run: find . -name '*.php' -print0 | xargs -0 -n1 php -l