From 7c7eca2106cdc8118fcd7a6cf7c5d7cbe64c072d Mon Sep 17 00:00:00 2001 From: Christian Scheb Date: Sat, 4 Nov 2023 13:47:34 +0100 Subject: [PATCH] Better CI job name --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 19fc507f..7f5ef247 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -39,7 +39,7 @@ jobs: run: vendor/bin/psalm unit-tests: - name: 'Unit Tests - PHP ${{ matrix.php-version }}, Symfony ${{ matrix.symfony-version }}' + name: 'Unit Tests - PHP ${{ matrix.php-version }}, Sf ${{ matrix.symfony-version }}${{ matrix.dependency-versions && join([", Deps: ", matrix.dependency-versions]) }}' runs-on: ubuntu-latest # We want to run on external PRs, but not on our own internal PRs as they'll be run by the push to the branch. if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }} @@ -76,7 +76,7 @@ jobs: run: vendor/bin/phpunit integration-tests: - name: 'Integration Tests - PHP ${{ matrix.php-version }}, Symfony ${{ matrix.symfony-version }}' + name: 'Integration Tests - PHP ${{ matrix.php-version }}, Sf ${{ matrix.symfony-version }}' runs-on: ubuntu-latest # We want to run on external PRs, but not on our own internal PRs as they'll be run by the push to the branch. if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}