feat!: pass InputData object to SubComponentRenderingHelper #71
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: CI | |
on: [pull_request] | |
jobs: | |
phpstan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: php-actions/composer@v6 | |
with: | |
args: --ignore-platform-reqs | |
- name: PHPStan Static Analysis | |
run: composer phpstan | |
php-cs-fixer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: php-actions/composer@v6 | |
with: | |
args: --ignore-platform-reqs | |
- name: PHP CS Fixer Static Analysis | |
run: composer php-cs-fixer | |
rector: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: php-actions/composer@v6 | |
with: | |
args: --ignore-platform-reqs | |
- name: Rector | |
run: composer rector |