Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kovah committed Oct 17, 2024
1 parent 1d4cc15 commit 31273e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/Controller/API/BulkStoreApiTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Controller\API;
namespace Tests\Controller\API;

use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
Expand Down

0 comments on commit 31273e5

Please sign in to comment.