Skip to content

Commit a0dc0d9

Browse files
authored
Merge pull request #4 from ge-tracker/tests-11
Update tests for L11
2 parents 8cf3f60 + 9c1c609 commit a0dc0d9

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/run-tests.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,23 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ ubuntu-latest ]
12-
php: [ 8.1, 8.2 ]
13-
laravel: [ 9.*, 10.* ]
12+
php: [ 8.1, 8.2, 8.3 ]
13+
laravel: [ 9.*, 10.*, 11.* ]
1414
include:
15+
- laravel: 11.*
16+
testbench: 9.*
17+
stability: prefer-stable
1518
- laravel: 10.*
1619
testbench: 8.*
1720
stability: prefer-stable
1821
- laravel: 9.*
1922
testbench: 7.*
2023
stability: prefer-stable
24+
exclude:
25+
- php: 8.3
26+
laravel: 9.*
27+
- php: 8.1
28+
laravel: 11.*
2129

2230
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
2331

@@ -35,7 +43,8 @@ jobs:
3543

3644
- name: Get Composer Cache Directory
3745
id: composer-cache
38-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
46+
run: |
47+
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3948
4049
- name: Cache composer dependencies
4150
uses: actions/cache@v2

0 commit comments

Comments
 (0)