diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a47880bb..0b71c4ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,6 @@ jobs: fail-fast: false matrix: php-version: [ - '8.1', '8.2', '8.3' ] @@ -57,14 +56,14 @@ jobs: - name: Run tests run: | - if [[ ${{ matrix.php-version }} == '8.1' ]]; then + if [[ ${{ matrix.php-version }} == '8.2' ]]; then XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.xml else composer test fi - name: Code Coverage Report - if: success() && matrix.php-version == '8.1' + if: success() && matrix.php-version == '8.2' uses: codecov/codecov-action@v1 - name: Composer require spryker-sdk/composer-prefer-lowest package