File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -54,10 +54,11 @@ jobs:
54
54
- name : Execute clear run
55
55
run : |
56
56
cd sample
57
+ mkdir -p "storage/debugbar/" && touch "storage/debugbar/foo.json"
57
58
php artisan debugbar:clear
58
59
- name : Check file count in logs
59
60
run : |
60
- if [ `ls -1q "sample/storage/logs /" | wc -l` -gt 0 ];then exit 1;fi
61
+ if [ `ls -1q "sample/storage/debugbar /" | wc -l` -gt 0 ];then exit 1;fi
61
62
php-laravel-integration-tests :
62
63
runs-on : ubuntu-latest
63
64
timeout-minutes : 15
@@ -103,7 +104,8 @@ jobs:
103
104
- name : Execute generate run
104
105
run : |
105
106
cd sample
107
+ mkdir -p "storage/debugbar/" && touch "storage/debugbar/foo.json"
106
108
php artisan debugbar:clear
107
109
- name : Check file count in logs
108
110
run : |
109
- if [ `ls -1q "sample/storage/logs /" | wc -l` -gt 0 ];then exit 1;fi
111
+ if [ `ls -1q "sample/storage/debugbar /" | wc -l` -gt 0 ];then exit 1;fi
You can’t perform that action at this time.
0 commit comments