update: add support for Pimcore 11 #8
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: Quality Assurance | |
on: | |
push: | |
branches: [ "v2" ] | |
pull_request: | |
branches: [ "v2" ] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
qa: | |
name: Quality Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
- name: PHP Setup | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
- name: Validate composer.json | |
run: composer validate --strict | |
- name: Install dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Check CS-Fixer | |
run: composer cs:check | |
- name: Check PHPStan | |
run: composer phpstan |