Bump composer/class-map-generator from 1.1.1 to 1.3.2 #1931
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PHP Code Style | |
on: pull_request | |
jobs: | |
PHP-Code-Sniffer: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.3" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: PHP Code Style (phpcs) | |
uses: chindit/actions-phpcs@1.0.1 | |
PHP-CS-Fixer: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.3" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install PHP with extensions | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: none | |
extensions: "json, mbstring, mongodb, pdo" | |
- name: Install PHP CS Fixer | |
run: COMPOSER=.github/workflows/composer.php-cs-fixer.json composer install --no-interaction --no-progress | |
- name: Run php-cs-fixer | |
run: vendor/bin/php-cs-fixer fix --dry-run --config=./php_cs.php -v --using-cache=no --diff --ansi |