Skip to content

Convert new table names to singular for model names #453

Convert new table names to singular for model names

Convert new table names to singular for model names #453

Workflow file for this run

name: static analysis
on:
push:
branches:
- main
- '*.x'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [ 8.3, 8.2, 8.1 ]
laravel: [ 10.*, 11.* ]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- php: "8.1"
laravel: "11.*"
name: P${{ matrix.php }} - L${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, pdo_pgsql, bcmath, soap, intl, exif, iconv
coverage: none
- name: Install dependencies
run: composer update --with "illuminate/support:${{ matrix.laravel }}" --with "illuminate/database:${{ matrix.laravel }}" --with "orchestra/testbench:${{ matrix.testbench }}" --no-interaction
- name: Run static analysis
uses: php-actions/phpstan@v3
with:
php_version: ${{ matrix.php }}
memory_limit: 1G