Skip to content

[3.x] Fix autocomplete & some other reactivesearch errors #168

[3.x] Fix autocomplete & some other reactivesearch errors

[3.x] Fix autocomplete & some other reactivesearch errors #168

Workflow file for this run

name: analyse
on:
push:
branches:
- master
- '*.x'
pull_request:
jobs:
analyse:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.3]
stability: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.RAPIDEZ_ACTIONS_ACCOUNT_PAT }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Analyse
run: composer analyse