Enhancement: Add new acf/fields/icon_picker/{tab_name}/icons
filter
#350
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PHPUnit Tests | |
on: | |
push: | |
branches: | |
- trunk | |
- 'branch/*' | |
pull_request: | |
branches: | |
- trunk | |
- 'branch/*' | |
jobs: | |
test: | |
name: PHP ${{ matrix.php }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
# Minimum supported PHP | |
- php: '7.4' | |
# Latest stable PHP | |
- php: '8.4' | |
fail-fast: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none | |
tools: composer:v2 | |
- name: Install dependencies | |
run: | | |
composer install --no-progress --prefer-dist --no-interaction | |
- name: Run PHPUnit | |
run: composer test:php |