Skip to content

[BUGFIX] Make style drop-down work with images #305

[BUGFIX] Make style drop-down work with images

[BUGFIX] Make style drop-down work with images #305

Workflow file for this run

name: PHP_CodeSniffer
on: [push, pull_request]
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-22.04]
php-version: ['8.1', '8.2', '8.3']
name: Testing PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }}
steps:
- uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-version }}
extensions: json,intl,mbstring
- name: Checkout repository
uses: actions/checkout@v4
- run: composer validate
- run: composer install --no-progress
- run: .Build/bin/phpcs Classes/ --standard=PSR12