Skip to content

Merge pull request #2254 from Strategy11/fix_turnstile_does_not_prope… #3752

Merge pull request #2254 from Strategy11/fix_turnstile_does_not_prope…

Merge pull request #2254 from Strategy11/fix_turnstile_does_not_prope… #3752

Workflow file for this run

on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- master
pull_request:
types: [ opened, labeled, synchronize ]
name: Inspections
jobs:
runPHPCSFixerInspection:
if: contains(github.event.pull_request.labels.*.name, 'run analysis')
name: Run PHP CS Fixer inspection
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- name: Install dependencies
run: composer install --dev --prefer-dist --no-progress
- name: PHPCSFixer check
run: ./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --dry-run --verbose