diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9a07ad1f..d314a6f1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,19 +58,19 @@ jobs: run: find . -name \*.php ! -path "./.Build/*" ! -path "./scripts/*" ! -path "./typo3_src/*" | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \; - name: Unit Tests without coverage - if: matrix.typo3 != '^10.4' || matrix.php != '7.4' + if: matrix.typo3 != '^11.5' || matrix.php != '8.3' run: | export "UNIT_XML"=.Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests-v10.xml .Build/bin/phpunit --colors -c $UNIT_XML Tests - - name: Unit Tests with coverage without 8.0 - if: matrix.typo3 == '^11.5' && matrix.php == '7.4' + - name: Unit Tests with coverage without 8.3 + if: matrix.typo3 == '^11.5' && matrix.php == '8.3' run: | export "UNIT_XML"=.Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests-v10.xml .Build/bin/phpunit --whitelist Classes --coverage-clover=unittest-coverage.clover --colors -c $UNIT_XML Tests - name: Upload coverage results to Scrutinizer - if: matrix.typo3 == '^10.4' + if: matrix.typo3 == '^11.5' && matrix.php == '8.3' run: | wget https://scrutinizer-ci.com/ocular.phar php ocular.phar code-coverage:upload --format=php-clover unittest-coverage.clover