Skip to content

Make country native field required with name fallback. #147

Make country native field required with name fallback.

Make country native field required with name fallback. #147

Workflow file for this run

name: PHPStan
on:
push:
paths:
- '**.php'
- 'phpstan.neon.dist'
- '.github/workflows/phpstan.yml'
- 'composer.json'
- 'composer.lock'
pull_request:
paths:
- '**.php'
- 'phpstan.neon.dist'
- '.github/workflows/phpstan.yml'
- 'composer.json'
- 'composer.lock'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
phpstan:
name: Run PHPStan
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
tools: composer
coverage: none
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
with:
composer-options: --no-scripts --no-progress --prefer-dist --optimize-autoloader
- name: Run PHPStan
run: ./vendor/bin/phpstan analyse --error-format=github