Skip to content

Merge pull request #73 from TeamEver/codex/ajouter-un-shortcode-pour-… #90

Merge pull request #73 from TeamEver/codex/ajouter-un-shortcode-pour-…

Merge pull request #73 from TeamEver/codex/ajouter-un-shortcode-pour-… #90

Workflow file for this run

name: PHP Syntax Check
on:
push:
paths:
- '**.php'
pull_request:
paths:
- '**.php'
jobs:
phplint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- name: PHP syntax check
run: find . -name '*.php' -print0 | xargs -0 -n 1 php -l