Support Pimcore 12 & FOSHttpCache v3, drop Pimcore 10 #283
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: Quality Assurance | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "10 4 * * 2" # Every Tuesday at 4:10 AM UTC | |
| permissions: | |
| contents: read | |
| jobs: | |
| qa: | |
| name: Quality Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@v6 | |
| - name: PHP Setup | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.4 | |
| - name: Validate composer.json | |
| run: composer validate --ansi --strict | |
| - name: Install dependencies | |
| uses: ramsey/composer-install@v4 | |
| - name: Normalize composer.json | |
| run: composer normalize --dry-run --no-check-lock | |
| - name: Check PHP code style | |
| run: composer cs:check | |
| - name: Check PHPStan | |
| run: composer phpstan |