Update vimeo/psalm requirement from 4.30.0 to 5.21.0 #279
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: 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 }} |