Skip to content

Commit de02a48

Browse files
committed
updated workflow with removed enum package
1 parent 812cd53 commit de02a48

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
php: [8.0, 7.4]
16-
laravel: [8.*]
15+
php: [8.1, 8.0]
16+
laravel: [9.*, 8.*]
1717
os: [ubuntu-latest, windows-latest]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20+
- laravel: 9.*
21+
testbench: 7.*
2022
- laravel: 8.*
2123
testbench: 6.*
22-
enum: 3.*
2324

2425
name: PHP ${{ matrix.php }} with Laravel ${{ matrix.laravel }} -${{ matrix.stability }} - ${{ matrix.os }}
2526

@@ -36,7 +37,7 @@ jobs:
3637

3738
- name: Install dependencies
3839
run: |
39-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "bensampo/laravel-enum:${{ matrix.enum }}" --no-interaction --no-update
40+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
4041
composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-suggest
4142
4243
- name: Execute pest tests

0 commit comments

Comments
 (0)