Skip to content

RecaptchaV3 no catched exception #9

RecaptchaV3 no catched exception

RecaptchaV3 no catched exception #9

name: Static Analysis
on:
pull_request:
branches: ['5.x', '4.x', '3.x']
push:
branches: ['5.x', '4.x', '3.x']
jobs:
phpstan:
name: PHPStan (PHP ${{ matrix.php-version }})
runs-on: ubuntu-22.04
strategy:
matrix:
php-version:
- '8.3'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: ${{ matrix.php-version }}
tools: cs2pr
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
- name: Run PHPStan
run: 'vendor/bin/phpstan analyse --error-format=checkstyle | cs2pr'