From ab6d05cac3777e3855c6302a5605c9e803cf9877 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 30 Oct 2023 05:55:48 +0100 Subject: [PATCH] Add an experimental step to CI build --- .github/workflows/sonarcloud.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index cf3b682c4f..e03c64c538 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -48,15 +48,15 @@ jobs: - name: "Create database file" run: touch storage/database/database.sqlite - - name: "Create the database" - run: php artisan firefly-iii:create-database - - name: "Upgrades the database to the latest version" run: php artisan firefly-iii:upgrade-database - name: "Integrity Database Report" run: php artisan firefly-iii:report-integrity + - name: "Run Laravel things" + run: composer install + - name: "Run tests with coverage" run: composer coverage