Skip to content

fixed * wildcard search #262

fixed * wildcard search

fixed * wildcard search #262

Workflow file for this run

name: "Quality"
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: ldap, xdebug, gd, json, xml, curl, zip, mbstring
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: PHP Version
run: php --version
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Install CodeSpell
run: pip install --user codespell
- name: CodeSpell
run: ./codespell.sh
- name: PHPStan Version
run: ./vendor/bin/phpstan -V
- name: PHPStan
run: ./vendor/bin/phpstan --xdebug
- name: Rector
run: ./vendor/bin/rector process --dry-run