1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-04-21 07:22:20 +02:00

Minor fixes

This commit is contained in:
Kovah 2024-10-17 16:24:21 +02:00
parent 1d4cc15b9b
commit 31273e58f8
No known key found for this signature in database
GPG Key ID: AAAA031BA9830D7B
3 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ jobs:
restore-keys: ${{ runner.os }}-composer-
- name: Prepare the environment
run: cp .env.example .env
run: cp .env.example .env && touch database/database.sqlite
- name: Validate composer.json and composer.lock
run: composer validate

View File

@ -78,7 +78,7 @@ jobs:
restore-keys: ${{ runner.os }}-composer-
- name: Prepare the environment
run: cp .env.example .env && touch database/testing.sqlite
run: cp .env.example .env && touch database/database.sqlite
- name: Validate composer.json and composer.lock
run: composer validate

View File

@ -1,6 +1,6 @@
<?php
namespace Controller\API;
namespace Tests\Controller\API;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;