From 2c05699b1251a26fbf4845602c7ab32d8cee34e5 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 10 Jul 2021 08:45:45 +0200 Subject: [PATCH] Enable color in gha --- .github/workflows/create-project.yml | 8 ++++---- .github/workflows/qa.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/create-project.yml b/.github/workflows/create-project.yml index 13bab486..7b9ca812 100644 --- a/.github/workflows/create-project.yml +++ b/.github/workflows/create-project.yml @@ -38,14 +38,14 @@ jobs: name: Create-project with skeleton ^4 if: "always() && steps.config.outcome == 'success'" run: | - composer create-project "symfony/skeleton:^4" v4 + composer create-project --ansi "symfony/skeleton:^4" v4 cd v4 - composer require $PACKAGES + composer require --ansi $PACKAGES - name: Create-project with skeleton ^5 if: "always() && steps.config.outcome == 'success'" run: | - composer create-project "symfony/skeleton:^5" v5 + composer create-project --ansi "symfony/skeleton:^5" v5 cd v5 - composer require $PACKAGES + composer require --ansi $PACKAGES diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 6133cab1..d1057500 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -28,7 +28,7 @@ jobs: wget -q -O recipes-checker.zip https://codeload.github.com/symfony-tools/recipes-checker/zip/refs/heads/main unzip recipes-checker.zip cd recipes-checker-main - composer install --no-dev + composer install --ansi --no-dev - name: Check manifest.json files