ci: prepare sqlite env in verify job; remove GitHub-only workflow
Build and Deploy / verify (push) Failing after 5s
Build and Deploy / deploy (push) Skipped

This commit is contained in:
2026-09-07 19:10:18 +00:00
parent b491c8ac86
commit 2301f7075e
4 changed files with 62 additions and 94 deletions
+6
View File
@@ -15,6 +15,12 @@ jobs:
php -r 'exit(PHP_VERSION_ID >= 80200 ? 0 : 1);'
node --version
composer --version
- name: Prepare env (sqlite for package discovery)
run: |
cp .env.example .env
php artisan key:generate --force
mkdir -p database
touch database/database.sqlite
- name: Install backend dependencies
run: |
composer install --no-interaction --prefer-dist