Skip to content

Commit

Permalink
fix: update multi php version for setup test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhongit committed Oct 31, 2023
1 parent 8b3a642 commit 1af54f4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/setup_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,18 @@ jobs:
tests:
name: Composer setup and tests
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '8.1', '8.2' ]
laravel: [ 10.*, 9.* ]
include:
- laravel: 10.*
testbench: 8.*
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
php-version: ${{ matrix.php }}
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
Expand Down

0 comments on commit 1af54f4

Please sign in to comment.