Skip to content

Update friendsofphp/php-cs-fixer requirement from 3.42.0 to 3.46.0 #268

Update friendsofphp/php-cs-fixer requirement from 3.42.0 to 3.46.0

Update friendsofphp/php-cs-fixer requirement from 3.42.0 to 3.46.0 #268

name: Static analysis
on:
pull_request: ~
push:
branches:
- master
jobs:
job:
strategy:
matrix:
include:
- description: Validate composer.json
script: composer validate
- description: Code style
script: make cs-check
- description: PHPStan
script: make phpstan
- description: PSalm
script: make psalm
- description: Type assertions
script: make type-assertions
name: ${{ matrix.description }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
- name: Install dependencies
uses: ramsey/composer-install@v2
- run: ${{ matrix.script }}