From f5b460c650ea2ae5362c4baf3205ee10b4832adc Mon Sep 17 00:00:00 2001 From: Leon Morival Date: Fri, 22 May 2026 10:41:34 +0200 Subject: [PATCH] feat: add intl --- .gitea/workflows/deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index e61807c..eb9785c 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -25,7 +25,11 @@ jobs: DB_DATABASE: ":memory:" with: args: > - bash -c "composer install --no-interaction --ignore-platform-req=ext-intl + bash -lc "apt-get update + && apt-get install -y --no-install-recommends libicu-dev + && docker-php-ext-install intl + && php -m | grep -qi '^intl$' + && composer install --no-interaction --prefer-dist && php artisan test --compact" deploy: