From 2607fcb561ef7b34025c3a6ebee30ab911540bc1 Mon Sep 17 00:00:00 2001 From: Julio Foulquie Date: Wed, 17 Apr 2024 20:01:26 -0300 Subject: [PATCH] Try to use php 8.3 on action --- .github/workflows/php.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index bd936cb..d76145e 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -17,6 +17,12 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Setup PHP with Xdebug + uses: shivammathur/setup-php@v2 + with: + php-version: '8.3' + coverage: none + - name: Validate composer.json and composer.lock run: composer validate --strict @@ -36,6 +42,12 @@ jobs: id: PHPStan run: composer run-script phpstan + - name: Setup PHP with Xdebug + uses: shivammathur/setup-php@v2 + with: + php-version: '8.3' + coverage: xdebug + - name: Run test suite id: PHPUnit run: composer run-script phpunit-cov -- --coverage-clover=coverage.xml