Skip to content

Fix missing theme variable in block calls for proper theme inheri… #312

Fix missing theme variable in block calls for proper theme inheri…

Fix missing theme variable in block calls for proper theme inheri… #312

Workflow file for this run

name: Testing
on:
push:
pull_request:
workflow_dispatch:
paths:
- '**.php'
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3', '8.4']
dependency-version: ['lowest', 'highest']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: dom fileinfo filter libxml xmlreader zip gd
- name: Install dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependency-version }}
- name: Run PHPUnit
run: vendor/bin/phpunit