Skip to content

Commit

Permalink
Fix: GitHub Actions configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
remzikocak authored Nov 14, 2023
1 parent d921ee0 commit 5ae3f5f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.1]
laravel: [10.*, 9.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
Expand All @@ -23,7 +22,7 @@ jobs:
testbench: 7.*
carbon: ^2.63

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
name: PHP:${{ matrix.php }} - Laravel:${{ matrix.laravel }} - ${{ matrix.os }}

steps:
- name: Checkout code
Expand All @@ -44,7 +43,7 @@ jobs:
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update --dev
composer install --${{ matrix.stability }} --prefer-dist --no-interaction
composer install --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/phpunit

0 comments on commit 5ae3f5f

Please sign in to comment.