Rebase on PHPStan 2.0 #269
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: Code Analysis | |
on: | |
pull_request: null | |
push: | |
# Prevent duplicating jobs on PR-s from local branches | |
branches: | |
- "main" | |
jobs: | |
code_analysis: | |
strategy: | |
fail-fast: false | |
matrix: | |
actions: | |
- | |
name: 'ECS' | |
run: 'vendor/bin/ecs' | |
- | |
name: 'PHPStan' | |
run: 'vendor/bin/phpstan' | |
- | |
name: 'Unit Tests' | |
run: 'vendor/bin/phpunit' | |
- | |
name: 'Check Commented Code' | |
run: vendor/bin/easy-ci check-commented-code src tests --ansi | |
- | |
name: 'Check Active Classes' | |
run: vendor/bin/class-leak check src --ansi --skip-type=TomasVotruba\\Bladestan\\ErrorReporting\\PHPStan\\ErrorFormatter\\BladeTemplateErrorFormatter | |
name: ${{ matrix.actions.name }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# see https://github.com/shivammathur/setup-php | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
# needed by phpunit | |
extensions: mbstring | |
# to disable xdebug | |
coverage: none | |
# composer install cache - https://github.com/ramsey/composer-install | |
- uses: "ramsey/composer-install@v2" | |
- run: ${{ matrix.actions.run }} |