Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ on:

jobs:

all_core_12:
name: "all core-12"
all_core_13:
name: "all core-13"
runs-on: ubuntu-22.04
strategy:
# This prevents cancellation of matrix job runs, if one/two already failed and let the
# rest of the matrix jobs be executed anyway.
fail-fast: false
matrix:
php: [ '8.2', '8.3', '8.4' ]
php: [ '8.2', '8.3', '8.4', '8.5' ]
minMax: [ 'composerInstall']
steps:
- name: "Checkout"
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@
/.php_cs.cache
/.php-cs-fixer.cache
/Build/testing-docker/.env
/Build/phpunit/FunctionalTests-Job-*
/Build/phpunit/.phpunit.cache
/composer.lock
/Documentation-GENERATED-temp/
/public/
/Tests/Unit/.phpunit.result.cache
/var/
/vendor/
/bin/
/typo3temp
478 changes: 384 additions & 94 deletions Build/Scripts/runTests.sh

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Build/phpunit/FunctionalTestsBootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* This file is defined in FunctionalTests.xml and called by phpunit
* before instantiating the test suites.
*/
(static function () {
(static function (): void {
$testbase = new Testbase();
$testbase->defineOriginalRootPath();
$testbase->createDirectory(ORIGINAL_ROOT . 'typo3temp/var/tests');
Expand Down
Loading