From ae87c8ca8c8d5ebb13f63eddc20e282fc501169b Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 23 Feb 2025 01:37:24 +0100 Subject: [PATCH] ci: Do not force PHPUnit version It should no longer be necessary and PHPUnit 7.5 is not compatible with PHP 8.4. master did that in 66215a6c809ba63a59b5d598c4ddd7842bb3d52b. --- .github/workflows/continuous-integration.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 602db34..8515ee8 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -46,12 +46,6 @@ jobs: env: COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: "Force PHPUnit version" - if: matrix.php >= '7.2' - run: "echo $SYMFONY_PHPUNIT_VERSION" - env: - SYMFONY_PHPUNIT_VERSION: 7.5 - - name: "Remove useless deps" run: "composer remove friendsofphp/php-cs-fixer --dev --no-progress --no-update" @@ -105,8 +99,6 @@ jobs: - name: "Run PHPUnit (with coverage)" run: "php vendor/bin/simple-phpunit -v --coverage-clover build/logs/clover.xml" - env: - SYMFONY_PHPUNIT_VERSION: 7.5 - name: "Retrieve Coveralls phar" run: "wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.4.2/php-coveralls.phar" @@ -159,8 +151,6 @@ jobs: - name: "Run PHPUnit" run: "php vendor/bin/simple-phpunit -v" - env: - SYMFONY_PHPUNIT_VERSION: 7.5 phpunit-composerv2: name: "PHPUnit with Composer v1 (PHP ${{ matrix.php }})" @@ -201,5 +191,3 @@ jobs: - name: "Run PHPUnit" run: "php vendor/bin/simple-phpunit -v" - env: - SYMFONY_PHPUNIT_VERSION: 7.5