Skip to content

Unit Test: Ensure that apply_filters is extracted, and that the parameters to it are as well. #2

Unit Test: Ensure that apply_filters is extracted, and that the parameters to it are as well.

Unit Test: Ensure that apply_filters is extracted, and that the parameters to it are as well. #2

Workflow file for this run

name: Unit Tests
on:
pull_request:
push:
workflow_dispatch:
jobs:
test-php:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- '7.4'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@e6f75134d35752277f093989e72e140eaa222f35 # v2.28.0
with:
php-version: '${{ matrix.php }}'
coverage: none
- name: Install
run: composer install
- name: Test
run: vendor/phpunit/phpunit/phpunit --verbose