[BUGFIX] Fix URL for multiview #4191
Workflow file for this run
This file contains hidden or 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: PHPStan | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| phpstan: | |
| name: Static Code Analysis | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| variants: [ {typo3: 12.4, php: 8.2}, {typo3: 13.4, php: 8.4} ] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Fix git ownership (needed for php-actions/composer@v6) | |
| run: git config --global --add safe.directory /app | |
| - name: Install dependencies | |
| uses: php-actions/composer@v6 | |
| with: | |
| command: update | |
| php_version: ${{ matrix.variants.php }} | |
| args: --ignore-platform-reqs --no-blocking --with=typo3/cms-core:^${{ matrix.variants.typo3 }} | |
| - name: PHPStan Static Analysis | |
| uses: php-actions/phpstan@v3 | |
| with: | |
| configuration: ./.github/phpstan_${{ matrix.variants.typo3 }}.neon | |
| path: '' |