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 7d7ff42 commit 84e3e68Copy full SHA for 84e3e68
.github/workflows/main.yml
@@ -16,16 +16,19 @@ jobs:
16
with:
17
php-version: 8.3
18
19
- - name: Install app
+ - name: Create database
20
run: touch ./database/database.sqlite
21
22
+ - name: Copy .env
23
+ run: cp .env.example .env
24
+
25
- name: Install app
26
run: composer install
27
28
- name: Run migrations
29
run: php artisan migrate
30
- - name: Test PHPUnit
31
+ - name: Test PHPStan
32
run: ./vendor/bin/phpstan analyse
33
34
- name: Test PHPUnit
0 commit comments