From 11754b7867ffef583fe7e96c607037295b6ace28 Mon Sep 17 00:00:00 2001 From: Tomas Date: Fri, 3 Nov 2023 13:48:25 +0200 Subject: [PATCH] Include PHP and Symfony version to CI job name --- .github/workflows/ci.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6e5d39..bfb1cf1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ concurrency: jobs: phpstan: - name: "PHPStan" + name: PHPStan runs-on: ubuntu-latest env: php-version: 8.2 @@ -55,7 +55,7 @@ jobs: run: vendor/bin/php-cs-fixer fix -v --dry-run --using-cache=no --format=checkstyle | cs2pr phpunit: - name: "PHPUnit" + name: PHPUnit (PHP ${{ matrix.php }}) (Symfony ${{ matrix.sf_version }}) (${{ matrix.dependencies }}) runs-on: ubuntu-latest strategy: max-parallel: 10 @@ -103,18 +103,6 @@ jobs: composer-options: "--optimize-autoloader" dependency-versions: "${{ matrix.dependencies }}" -# - name: "Install Composer dependencies (default)" -# if: matrix.strategy != 'lowest' -# env: -# SYMFONY_REQUIRE: ${{ matrix.sf_version }} -# run: composer update --no-interaction --optimize-autoloader -# -# - name: "Install Composer dependencies (lowest)" -# if: matrix.strategy == 'lowest' -# env: -# SYMFONY_REQUIRE: ${{ matrix.sf_version }} -# run: composer update --no-interaction --prefer-stable --prefer-lowest --optimize-autoloader - - name: "Run tests" env: SYMFONY_DEPRECATIONS_HELPER: 'max[self]=3&max[indirect]=1'