diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 93d5c7b..bb292cb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -38,12 +38,12 @@ jobs: run: composer install --no-progress --no-interaction --ignore-platform-req=php - name: Test - if: matrix.php-versions != '8.2' + if: matrix.php-versions != '8.3' run: composer test continue-on-error: true - name: Test with Coverage - if: matrix.php-versions == '8.2' + if: matrix.php-versions == '8.3' working-directory: ./ run: | composer test-coverage @@ -51,7 +51,7 @@ jobs: sed -i 's/\/home\/runner\/work\/render\/render\//\/github\/workspace\//g' clover.xml - name: Scan code with SonarCloud - if: matrix.php-versions == '8.2' + if: matrix.php-versions == '8.3' uses: SonarSource/sonarcloud-github-action@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -68,7 +68,7 @@ jobs: -Dsonar.php.coverage.reportPaths=clover.xml - name: Test with latest dependencies - if: matrix.php-versions == '8.2' + if: matrix.php-versions == '8.3' run: | composer update composer test