Skip to content

Hierarchical Taxonomy Support #3850

Hierarchical Taxonomy Support

Hierarchical Taxonomy Support #3850

Workflow file for this run

name: Run Tests
on: # zizmor: ignore[concurrency-limits]
push:
branches:
- master
- '*.x'
pull_request:
schedule:
- cron: '0 0 * * *'
permissions: {}
jobs:
php-tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.3, 8.4, 8.5]
laravel: [12.*, 13.*]
stability: [prefer-lowest, prefer-stable]
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup PHP
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- name: Install dependencies
shell: bash
env:
LARAVEL: ${{ matrix.laravel }}
STABILITY: ${{ matrix.stability }}
run: |
composer require "illuminate/contracts:$LARAVEL" --no-interaction --no-update
composer update --$STABILITY --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: vendor/bin/phpunit