Skip to content

Commit

Permalink
edit github action phpunit.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rust17 committed Dec 27, 2024
1 parent f040d95 commit 2fa1834
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
laravel_version: [10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench-core: ^8.0
- laravel: 11.*
testbench-core: ^9.0
- laravel_version: 10.*
testbench-core-version: ^8.0
- laravel_version: 11.*
testbench-core-version: ^9.0

name: PHP-${{ matrix.php_version }} - LARAVEL${{ matrix.laravel_version }} - ${{ matrix.stability }}

Expand All @@ -30,7 +30,7 @@ jobs:

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel_version }}" "orchestra/testbench-core:${{ matrix.testbench-core }}" --dev --no-interaction --no-update
composer require "laravel/framework:${{ matrix.laravel_version }}" "orchestra/testbench-core:${{ matrix.testbench-core-version }}" --dev --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Run PHPUnit
Expand Down

0 comments on commit 2fa1834

Please sign in to comment.