Skip to content

Fix panel heading padding #541

Fix panel heading padding

Fix panel heading padding #541

Workflow file for this run

name: Check PHP
on:
push:
branches:
- 2.x
paths:
- '**.php'
pull_request:
branches:
- 2.x
paths:
- '**.php'
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: composer
- uses: actions/checkout@v4
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Install dependencies
run: composer install
- name: Check coding style
run: composer fix:check
- name: Run PHPStan
run: composer phpstan
- name: Run Rector
run: composer rector:check