Skip to content

[BUGFIX] Fix showing "Scheduled" and "Run-time" columns in backend log #693

[BUGFIX] Fix showing "Scheduled" and "Run-time" columns in backend log

[BUGFIX] Fix showing "Scheduled" and "Run-time" columns in backend log #693

name: "Backwards Compatibility Check"
on:
pull_request:
branches:
- "**"
push:
branches:
- "v11.x"
jobs:
BC-Breaks:
name: "Check Backwards Compatibility"
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- '8.0'
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
with:
fetch-depth: 0
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "pcov"
php-version: ${{ matrix.php-version }}
ini-values: memory_limit=-1
tools: composer:v2, cs2pr
extensions: curl
- name: "Cache dependencies"
uses: "actions/cache@v2"
with:
path: |
~/.composer/cache
vendor
key: "php-${{ matrix.php-version }}"
restore-keys: "php-${{ matrix.php-version }}"
- name: "Roave Backward Compatibility Check"
run: |
# To ensure compability with the roave tool.
composer remove --dev nimut/typo3-complete nimut/testing-framework rector/rector symplify/easy-coding-standard typo3/testing-framework
rm -rf .Build composer.lock
composer require --dev roave/backward-compatibility-check:"^6.4"
.Build/bin/roave-backward-compatibility-check --from=11.0.0