Skip to content

Improve tests and require strict metadata coverage #306

Improve tests and require strict metadata coverage

Improve tests and require strict metadata coverage #306

Workflow file for this run

name: Code quality
on:
pull_request:
paths:
- "**.php"
push:
branches: [main]
paths:
- "**.php"
permissions:
contents: read
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup PHP
uses: shivammathur/setup-php@2e947f1f6932d141d076ca441d0e1e881775e95b # v2.31.0
with:
php-version: '8.2'
coverage: none
- name: "Validate composer.json and composer.lock"
run: "composer validate --no-check-publish"
- name: Install dependencies with composer
run: composer install --prefer-dist
- name: Run PHPStan
run: composer lint-phpstan
phpcs:
name: phpcs
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup PHP
uses: shivammathur/setup-php@2e947f1f6932d141d076ca441d0e1e881775e95b # v2.31.0
with:
php-version: '8.2'
coverage: none
tools: cs2pr
- name: Install dependencies with composer
run: composer install --prefer-dist
- name: Run PHPStan
run: composer lint-phpcs-gh-action