Skip to content

feat: introduce object to represent an HTTP request problem details #1935

feat: introduce object to represent an HTTP request problem details

feat: introduce object to represent an HTTP request problem details #1935

name: Coding Standards & Static Analysis
on: [push, pull_request]
jobs:
qa:
name: Quality Assurance
runs-on: ubuntu-latest
env:
php-version: '8.3'
php-extensions: yaml
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.php-version }}
extensions: ${{ env.php-extensions }}
ini-values: zend.assertions=1
coverage: none # Xdebug is installed by default, so we remove it manually
- name: Creating var directory
run: mkdir -p var/cache
- name: Cache QA results
uses: actions/cache@v4
with:
path: var/cache
key: qa-${{ hashFiles('composer.lock') }}-${{ hashFiles('.github/workflows/quality-assurance.yml') }}
restore-keys: qa-${{ hashFiles('composer.lock') }}-${{ hashFiles('.github/workflows/quality-assurance.yml') }}
- name: Checking Composer
run: composer validate --strict
- uses: "ramsey/composer-install@v2"
- name: Checking for forgotten TODO
run: composer check-todo
- name: Running PHPStan (global)
run: php vendor/bin/phpstan
- name: Running PHP Coding Standards Fixer
run: php vendor/bin/php-cs-fixer fix --dry-run
- name: Running Rector
run: php vendor/bin/rector --dry-run