From dd51e7baf5af71992786f5899146be6e7391c801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 2 Nov 2023 22:47:00 +0100 Subject: [PATCH 1/5] Disable install-laravel.yml --- .github/workflows/install-laravel.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/install-laravel.yml b/.github/workflows/install-laravel.yml index baa09558e..f233085ef 100644 --- a/.github/workflows/install-laravel.yml +++ b/.github/workflows/install-laravel.yml @@ -62,7 +62,8 @@ jobs: sed -i -e 's#^DB_CONNECTION=.*$#DB_CONNECTION=sqlite#' .env sed -i -e 's#^DB_DATABASE=.*$#DB_DATABASE=:memory:#' .env php artisan key:generate - php artisan root:install --seed + # Wait for https://github.com/conedevelopment/root/issues/155 + ##php artisan root:install --seed php artisan root:publish --packages - name: "Perform static analysis on stubs" From cc52057d3c07e7fd355a22687b51874742892e35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 2 Nov 2023 22:49:46 +0100 Subject: [PATCH 2/5] Update install-laravel.yml --- .github/workflows/install-laravel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/install-laravel.yml b/.github/workflows/install-laravel.yml index f233085ef..41283126a 100644 --- a/.github/workflows/install-laravel.yml +++ b/.github/workflows/install-laravel.yml @@ -71,7 +71,7 @@ jobs: run: | composer require --no-interaction --dev --prefer-dist nunomaduro/larastan php artisan root:action FooBar - php artisan root:extract FooBar + ##php artisan root:extract FooBar php artisan root:field FooBar php artisan root:filter FooBar php artisan root:resource FooBar From 583d768559092f00f30d323481f1ee7f621a2889 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 2 Nov 2023 22:54:04 +0100 Subject: [PATCH 3/5] Update install-laravel.yml --- .github/workflows/install-laravel.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/install-laravel.yml b/.github/workflows/install-laravel.yml index 41283126a..907564bd0 100644 --- a/.github/workflows/install-laravel.yml +++ b/.github/workflows/install-laravel.yml @@ -76,6 +76,7 @@ jobs: php artisan root:filter FooBar php artisan root:resource FooBar php artisan root:widget FooBar + cat app/Root/Resources/FooBar.php vendor/bin/phpstan analyze -c vendor/nunomaduro/larastan/extension.neon -l 5 $(find app/Root/ -type f -name FooBar.php) - name: "Install front-end dependencies" From f7e3e3eb48336fbde43628b6d9c852c502eb624c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 2 Nov 2023 23:02:03 +0100 Subject: [PATCH 4/5] Update install-laravel.yml --- .github/workflows/install-laravel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/install-laravel.yml b/.github/workflows/install-laravel.yml index 907564bd0..68462c82e 100644 --- a/.github/workflows/install-laravel.yml +++ b/.github/workflows/install-laravel.yml @@ -74,7 +74,7 @@ jobs: ##php artisan root:extract FooBar php artisan root:field FooBar php artisan root:filter FooBar - php artisan root:resource FooBar + php artisan root:resource FooBar --model 'App\Models\User' php artisan root:widget FooBar cat app/Root/Resources/FooBar.php vendor/bin/phpstan analyze -c vendor/nunomaduro/larastan/extension.neon -l 5 $(find app/Root/ -type f -name FooBar.php) From fccbd93058c3d8ad1003af8359f8a9caf7c8bc15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 2 Nov 2023 23:04:44 +0100 Subject: [PATCH 5/5] Update install-laravel.yml --- .github/workflows/install-laravel.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/install-laravel.yml b/.github/workflows/install-laravel.yml index 68462c82e..6d86d6409 100644 --- a/.github/workflows/install-laravel.yml +++ b/.github/workflows/install-laravel.yml @@ -76,7 +76,6 @@ jobs: php artisan root:filter FooBar php artisan root:resource FooBar --model 'App\Models\User' php artisan root:widget FooBar - cat app/Root/Resources/FooBar.php vendor/bin/phpstan analyze -c vendor/nunomaduro/larastan/extension.neon -l 5 $(find app/Root/ -type f -name FooBar.php) - name: "Install front-end dependencies"