Skip to content

docs(release): document Docker Hub tags incl. bare version tag #704

docs(release): document Docker Hub tags incl. bare version tag

docs(release): document Docker Hub tags incl. bare version tag #704

name: PHP Syntax Checker
on:
pull_request:
push:
branches:
- master
- release
workflow_call:
jobs:
php-lint:
name: PHP lint (${{ matrix.php-version }})
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.1', '8.4']
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Check PHP syntax
run: |
find . -name '*.php' -not -path './vendor/*' -exec php -l {} \;