Skip to content

Merge branch 'main' of https://github.com/FabioGuin/livewire-searchab… #12

Merge branch 'main' of https://github.com/FabioGuin/livewire-searchab…

Merge branch 'main' of https://github.com/FabioGuin/livewire-searchab… #12

name: Dependency Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3]
laravel: [10.*, 11.*]
exclude:
- php: 8.1
laravel: 11.*
name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, iconv, intl, zip, pdo_sqlite
tools: composer:v2
coverage: none
- name: Install Composer dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update --dev
composer update --prefer-stable --no-interaction