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