Skip to content

Commit 32309a4

Browse files
committed
Add gitkeep to views to handle orchestra requiring spatie/ray
1 parent fe3821f commit 32309a4

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
if: "!contains(github.event.head_commit.message, 'ci skip')"
99
strategy:
10-
fail-fast: true
10+
fail-fast: false
1111
matrix:
1212
php: [ 7.2, 7.3, 7.4, 8.0 ]
1313
laravel: [ 7.*, 8.* ]

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/vendor
2-
/storage
2+
/storage/framework/testing
33
.env
44
.phpunit.result.cache
55
npm-debug.log

storage/framework/views/.gitkeep

Whitespace-only changes.

tests/BaseTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ protected function tearDown(): void
2222
{
2323
parent::tearDown();
2424

25-
File::deleteDirectory(base_path('storage'));
25+
File::deleteDirectory(base_path('storage/framework/testing'));
2626
}
2727

2828
protected function getBasePath()

0 commit comments

Comments
 (0)