Skip to content

Commit

Permalink
Better CI job name
Browse files Browse the repository at this point in the history
  • Loading branch information
scheb committed Nov 4, 2023
1 parent 81bc688 commit 2ce8cb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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) }}
Expand Down Expand Up @@ -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) }}
Expand Down

0 comments on commit 2ce8cb4

Please sign in to comment.