Skip to content

Commit

Permalink
ci: we don't need laravel/orchestra to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xel1045 committed Jan 23, 2025
1 parent fc67e20 commit 7566d4d
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,9 @@ jobs:
fail-fast: true
matrix:
php: [8.1, 8.2]
laravel: [9.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
name: P${{ matrix.php }} - ${{ matrix.dependency-version }}

steps:
- name: Checkout code
Expand All @@ -30,9 +26,8 @@ jobs:
coverage: none

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction

- name: Execute tests
run: composer test

Expand Down

0 comments on commit 7566d4d

Please sign in to comment.