From f6c500653f617a176a8b6cc3f941f1d0aa7de5ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Gonz=C3=A1lez?= Date: Thu, 11 Apr 2024 19:30:48 -0600 Subject: [PATCH] Fix GitHub PHPUnit workflow * Remove the `--verbose` option since it was removed from PHPUnit 10.x * Update phpunit.yml workflow Ubuntu version * Add PHP 8.3 to the test matrix in the GitHub workflow file Co-authored-by: Roberto Aguilar --- .github/workflows/phpunit.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index ab3085b..6d395e8 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -8,12 +8,12 @@ on: jobs: linux_tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: fail-fast: true matrix: - php: ['8.2'] + php: ['8.2', '8.3'] stability: [prefer-lowest, prefer-stable] name: PHP ${{ matrix.php }} - ${{ matrix.stability }} @@ -38,4 +38,4 @@ jobs: command: composer update --${{ matrix.stability }} --no-interaction --no-progress - name: Execute tests - run: vendor/bin/phpunit --verbose + run: vendor/bin/phpunit