Skip to content

chore: Promote annotations @before and @beforeClass to attributes #216

chore: Promote annotations @before and @beforeClass to attributes

chore: Promote annotations @before and @beforeClass to attributes #216

Workflow file for this run

name: Static analysis
on: [pull_request]
jobs:
job:
strategy:
matrix:
include:
- description: Validate composer.json
script: composer validate
- description: Code style
script: vendor/bin/php-cs-fixer fix --verbose --diff --dry-run
- description: PHPStan
script: vendor/bin/phpstan
- description: Psalm
script: vendor/bin/psalm.phar
name: ${{ matrix.description }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
- name: Install dependencies
uses: "ramsey/composer-install@v1"
- run: ${{ matrix.script }}