Skip to content

Bugfix - Self referential foreign key creating separate migration #172

Bugfix - Self referential foreign key creating separate migration

Bugfix - Self referential foreign key creating separate migration #172

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
php: ['7.4', '8.0', '8.1']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Remove pint if not PHP 8.1
run: |
if [ '${{ matrix.php }}' != '8.1' ]; then
composer remove laravel/pint --dev
fi
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run test suite
run: composer run test