From 3ff50cfb5efd221219750329164cfb0a11070811 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 5 Aug 2026 08:34:13 +0300 Subject: [PATCH] Remove Scrutinizer coverage upload steps from CI workflow Scrutinizer's analysis is being reconfigured on the dashboard to not require external code coverage, so these uploads (and the ocular.phar dependency) are no longer needed. CodeCov already handles coverage reporting in the same workflow. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/tests.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a028fdb..8cd20a2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -69,15 +69,3 @@ jobs: uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} - - - name: Upload Coverage to Scrutinizer CI (PHP < 8.0) - if: "${{ matrix.php < '8.0' }}" - run: | - wget https://github.com/scrutinizer-ci/ocular/releases/download/1.6.0/ocular.phar - php ocular.phar code-coverage:upload --repository=g/aik099/CodingStandard --format=php-clover coverage.clover - - - name: Upload Coverage to Scrutinizer CI (PHP >= 8.0) - if: "${{ matrix.php >= '8.0' }}" - run: | - composer require scrutinizer/ocular - vendor/bin/ocular code-coverage:upload --repository=g/aik099/CodingStandard --format=php-clover coverage.clover