We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d31b531 commit c064e59Copy full SHA for c064e59
.github/workflows/tests.yml
@@ -54,6 +54,12 @@ jobs:
54
npm install
55
npm run build
56
57
+ - name: Copy .env
58
+ run: php -r "file_exists('.env') || copy('.env.example', '.env');"
59
+
60
+ - name: Creating Database
61
+ run: php -r "file_exists('database/database.sqlite') || touch('database/database.sqlite');"
62
63
- name: Preparing Laravel
64
run: php artisan key:generate --force && php artisan optimize:clear
65
0 commit comments