Skip to content

Commit

Permalink
Make PHP 8.4 the main version for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
firstred committed Nov 21, 2024
1 parent 73e8a3b commit 7a5bd96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ jobs:
run: composer install --no-progress --prefer-dist --optimize-autoloader

- name: Test with PHPUnit
if: matrix.php-versions != '8.3' || matrix.operating-system != 'ubuntu-latest'
if: matrix.php-versions != '8.4' || matrix.operating-system != 'ubuntu-latest'
env:
XDEBUG_MODE: coverage
shell: bash
run: vendor/bin/phpunit --testdox -- tests

- name: Test with PHPUnit (coverage)
if: matrix.php-versions == '8.3' && matrix.operating-system == 'ubuntu-latest'
if: matrix.php-versions == '8.4' && matrix.operating-system == 'ubuntu-latest'
env:
XDEBUG_MODE: coverage
shell: bash
run: vendor/bin/phpunit --testdox --coverage-clover coverage.xml -- tests

- name: Codecov
if: matrix.php-versions == '8.3' && matrix.operating-system == 'ubuntu-latest'
if: matrix.php-versions == '8.4' && matrix.operating-system == 'ubuntu-latest'
uses: codecov/codecov-action@v5

0 comments on commit 7a5bd96

Please sign in to comment.