Skip to content

Commit 7cf321f

Browse files
committed
update test matrix, use L10 and PHP 8.2 for coverage
1 parent 98c7234 commit 7cf321f

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
- name: Setup PHP
2525
uses: shivammathur/setup-php@v2
2626
with:
27-
php-version: 8.1
27+
php-version: 8.2
2828
extensions: curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv, xdebug
2929
coverage: xdebug
3030
tools: composer:v2
3131
- name: Install dependencies
3232
run: |
33-
composer require "laravel/framework:^9.0" "phpunit/phpunit:^9.0" "doctrine/dbal:^3.0" --no-interaction --no-update --no-suggest
33+
composer require "laravel/framework:^10.0" "phpunit/phpunit:^9.0" "doctrine/dbal:^3.0" --no-interaction --no-update --no-suggest
3434
composer update --prefer-dist --no-interaction
3535
- name: Execute tests
3636
run: vendor/bin/phpunit --coverage-clover coverage.xml

.github/workflows/testing.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# os: [ubuntu-latest, macos-latest, windows-latest]
2222
php: [7.3, 7.4, 8.0, 8.1, 8.2]
2323
dbal: [^2.5, ^3.0]
24-
laravel: [8.*, 9.*]
24+
laravel: [8.*, 9.*, 10.*]
2525
phpunit: [8.*, 9.*]
2626
dependency-version: [stable] # to add: lowest
2727
exclude:
@@ -31,6 +31,15 @@ jobs:
3131
php: 7.4
3232
- laravel: 9.*
3333
phpunit: 8.*
34+
- laravel: 10.*
35+
php: 7.3
36+
- laravel: 10.*
37+
php: 7.4
38+
- laravel: 10.*
39+
php: 8.0
40+
- laravel: 10.*
41+
phpunit: 8.*
42+
3443

3544
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, PHPUnit ${{ matrix.phpunit }}, DBAL ${{ matrix.dbal }} --prefer-${{ matrix.dependency-version }}
3645

0 commit comments

Comments
 (0)