add the AssetMapper and TypeInfo components (#226) #522
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: | |
phpstan: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
coverage: none | |
tools: phpstan:1.10, cs2pr | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Download dependencies | |
uses: ramsey/composer-install@v1 | |
- name: PHPStan | |
run: phpstan analyze --no-progress --error-format=checkstyle | cs2pr | |
php-cs-fixer: | |
name: PHP-CS-Fixer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
coverage: none | |
tools: php-cs-fixer:3.42, cs2pr | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: PHP-CS-Fixer | |
run: php-cs-fixer fix --dry-run --format=checkstyle | cs2pr | |
psalm: | |
name: Psalm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
coverage: none | |
tools: vimeo/psalm:5.18.0 | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Download dependencies | |
uses: ramsey/composer-install@v1 | |
- name: Psalm | |
run: psalm --no-progress --output-format=github |