build: Bump friendsofphp/php-cs-fixer from 3.61.1 to 3.63.1 in /vendor-bin/php-cs-fixer in the dependencies group across 1 directory #292
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: CS & SA | |
on: | |
pull_request: | |
push: | |
branches: [ master, main ] | |
schedule: | |
- cron: '45 4 1 * *' | |
jobs: | |
php-cs-fixer: | |
name: PHP-CS-Fixer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
- name: Install dependencies | |
run: composer install --no-progress --no-interaction --prefer-dist | |
- name: Install dependencies | |
run: composer bin php-cs-fixer install | |
- name: Run script | |
run: vendor-bin/php-cs-fixer/bin/php-cs-fixer fix --verbose --diff --dry-run | |
phpstan: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
- name: Install dependencies | |
run: composer install --no-progress --no-interaction --prefer-dist | |
- name: Install dependencies | |
run: composer bin phpstan install | |
- name: Run script | |
run: make phpstan |