Skip to content

Commit

Permalink
Adds PHP 8.3 support and adjusts workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Oct 13, 2023
1 parent bb84ac2 commit f33613c
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ jobs:

strategy:
matrix:
php: [7.1, 7.2, 7.3, 7.4, '8.0', 8.1, 8.2]
laravel: [5.8.*, 6.*, 7.*, 8.*, 9.*, 10.*]
php: [7.1, 7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3]
laravel: [5.8.*, 6.*, 7.*, 8.*, 9.*, 10.*, 11.*]
os: [ubuntu-latest]
include:
- laravel: 11.*
testbench: 9.*
dbal: 3.*
- laravel: 10.*
testbench: 8.*
dbal: 3.*
Expand Down Expand Up @@ -78,12 +81,24 @@ jobs:
php: 7.4
- laravel: 10.*
php: '8.0'
- laravel: 11.*
php: 7.1
- laravel: 11.*
php: 7.2
- laravel: 11.*
php: 7.3
- laravel: 11.*
php: 7.4
- laravel: 11.*
php: '8.0'
- laravel: 11.*
php: '8.1'

name: PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }}

steps:
- name: Checkout the code
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down

0 comments on commit f33613c

Please sign in to comment.