Skip to content

fix: remove category FK constraint for shared hosting compatibility #51

fix: remove category FK constraint for shared hosting compatibility

fix: remove category FK constraint for shared hosting compatibility #51

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
phpunit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: mbstring, dom, fileinfo, pdo_sqlite
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-progress
- name: Prepare environment
run: |
cp .env.example .env
php artisan key:generate
php artisan jwt:secret --force
- name: Run tests
run: php artisan test