Skip to content

Commit e9acfdf

Browse files
committed
chore(ci): enable tests for php 8.3 and laravel 11
1 parent 94aab34 commit e9acfdf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,15 +296,15 @@ jobs:
296296
run: composer update --with "orchestra/testbench=^5.0" --prefer-dist --no-progress
297297

298298
- name: Install laravel/legacy-factories only for Laravel >= 8.0
299-
if: matrix.laravel-version == '^8.0' || matrix.laravel-version == '^9.0'
299+
if: matrix.laravel-version == '^8.0' || matrix.laravel-version == '^9.0' || matrix.laravel-version == '^10.0' || matrix.laravel-version == '^11.0'
300300
run: composer require "laravel/legacy-factories" --prefer-dist --no-progress
301301

302302
- name: Upgrade to PHPUnit 9 for PHP >= 8.0
303-
if: matrix.laravel-version == '^8.0' || matrix.laravel-version == '^9.0'
303+
if: matrix.laravel-version == '^8.0' || matrix.laravel-version == '^9.0' || matrix.laravel-version == '^10.0' || matrix.laravel-version == '^11.0'
304304
run: composer update --with "phpunit/phpunit=^9.0" --prefer-dist --no-progress
305305

306306
- name: Upgrade PHPUnit Config for Laravel >= 8.0
307-
if: matrix.laravel-version == '^8.0' || matrix.laravel-version == '^9.0'
307+
if: matrix.laravel-version == '^8.0' || matrix.laravel-version == '^9.0' || matrix.laravel-version == '^10.0' || matrix.laravel-version == '^11.0'
308308
run: vendor/bin/phpunit -c phpunit.xml.dist --migrate-configuration
309309

310310
- name: Run test suite with Sqlite

0 commit comments

Comments
 (0)