Skip to content

Make the entity cache tags test compatible with PHPUnit 10 (see #7150) #1111

Make the entity cache tags test compatible with PHPUnit 10 (see #7150)

Make the entity cache tags test compatible with PHPUnit 10 (see #7150) #1111

Workflow file for this run

name: Split
on:
push:
branches:
- 5.x
tags:
- '*'
permissions: read-all
defaults:
run:
# Simulate an interactive terminal with color support
shell: script -q -e -c "export TERM=xterm; bash {0}"
jobs:
monorepo-split:
name: Monorepo split
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3 # latest stable version
extensions: json, zlib
coverage: none
- name: Checkout
uses: actions/checkout@v4
with:
show-progress: false
- name: Cache the monorepo split
uses: actions/cache@v4
with:
path: .monorepo-split-cache
key: dev-${GITHUB_REF##*/}
- name: Install the dependencies
run: composer global require contao/monorepo-tools:^0.2
- name: Split the monorepo
run: $HOME/.composer/vendor/bin/monorepo-tools split ${GITHUB_REF##*/} ${{ github.event.forced && '--force-push' || '' }}
env:
GITHUB_TOKEN: ${{ secrets.MONOREPO_SPLIT_TOKEN }}