Skip to content

Commit

Permalink
explicitely require testbench versions
Browse files Browse the repository at this point in the history
  • Loading branch information
austintoddj committed Feb 17, 2023
1 parent 355a649 commit b67dd93
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ jobs:
matrix:
php: [7.3, 7.4, '8.0', 8.1, 8.2]
laravel: [6, 7, 8, 9, 10]
include:
- laravel: 6
testbench: 4.0
- laravel: 7
testbench: 5.0
- laravel: 8
testbench: 6.0
- laravel: 9
testbench: 7.0
- laravel: 10
testbench: 8.0
exclude:
- php: 7.3
laravel: 9
Expand Down Expand Up @@ -53,7 +64,7 @@ jobs:

- name: Install dependencies
run: |
composer require "laravel/framework=${{ matrix.laravel }}" --dev --no-update
composer require "laravel/framework=${{ matrix.laravel }}" "orchestra/testbench=${{ matrix.testbench }}" --dev --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Run tests
Expand Down

0 comments on commit b67dd93

Please sign in to comment.