We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f44ffb9 commit 4793665Copy full SHA for 4793665
.github/workflows/laravel.yml
@@ -76,6 +76,16 @@ jobs:
76
run: |
77
cp .env.example .env
78
php artisan key:generate
79
+ - name: Directory Permissions
80
+ run: chmod -R 777 storage bootstrap/cache
81
+ - name: Create Database
82
+ run: |
83
+ mkdir -p database
84
+ touch database/database.sqlite
85
+ - name: Execute tests (Unit and Feature tests) via PHPUnit/Pest
86
+ env:
87
+ DB_CONNECTION: sqlite
88
+ DB_DATABASE: database/database.sqlite
89
90
- name: Tests
91
run: composer test
0 commit comments