Skip to content

Commit

Permalink
Merge pull request #4 from ge-tracker/tests-11
Browse files Browse the repository at this point in the history
Update tests for L11
  • Loading branch information
gtjamesa committed Mar 22, 2024
2 parents 8cf3f60 + 9c1c609 commit a0dc0d9
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,23 @@ jobs:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
php: [ 8.1, 8.2 ]
laravel: [ 9.*, 10.* ]
php: [ 8.1, 8.2, 8.3 ]
laravel: [ 9.*, 10.*, 11.* ]
include:
- laravel: 11.*
testbench: 9.*
stability: prefer-stable
- laravel: 10.*
testbench: 8.*
stability: prefer-stable
- laravel: 9.*
testbench: 7.*
stability: prefer-stable
exclude:
- php: 8.3
laravel: 9.*
- php: 8.1
laravel: 11.*

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

Expand All @@ -35,7 +43,8 @@ jobs:

- name: Get Composer Cache Directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer dependencies
uses: actions/cache@v2
Expand Down

0 comments on commit a0dc0d9

Please sign in to comment.