Skip to content

Add Families

Add Families #378

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Update sqlite3
run: |
download_link="https://www.sqlite.org/2024/sqlite-tools-linux-x64-3460000.zip"
wget "$download_link" -P /tmp
unzip "/tmp/$(basename "$download_link")" -d /tmp
sudo install /tmp/sqlite3 /usr/local/bin/
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress
- name: Run Vite
run: npm install && npm run build
- name: Generate key
run: php artisan key:generate
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests via PHPUnit
run: vendor/bin/phpunit