|
18 | 18 | COMPOSER_NO_INTERACTION: 1 |
19 | 19 | strategy: |
20 | 20 | matrix: |
21 | | - php: [8.3, 8.2, 8.1, 8.0] |
| 21 | + php: [8.4, 8.3, 8.2, 8.1, 8.0] |
22 | 22 | lumen: [10.*, 9.*] |
23 | 23 | exclude: |
24 | 24 | - lumen: 10.* |
@@ -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 |
|
66 | 67 | strategy: |
67 | 68 | fail-fast: false |
68 | 69 | matrix: |
69 | | - php: [8.3, 8.2, 8.1, 8.0] |
| 70 | + php: [8.4, 8.3, 8.2, 8.1, 8.0] |
70 | 71 | laravel: [11.*, 10.*, 9.*] |
71 | 72 | exclude: |
72 | 73 | - laravel: 10.* |
@@ -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 |
0 commit comments