Skip to content

Commit e63e915

Browse files
committed
Improve
1 parent 424295a commit e63e915

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/CI-ComposerRequireChecker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v2
2626

27-
- name: Setup PHP
27+
- name: Setup PHP ${{ matrix.php-version }}
2828
uses: shivammathur/setup-php@v2
2929
with:
3030
php-version: ${{ matrix.php-version }}

.github/workflows/CI-DepsChecker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v2
2626

27-
- name: Setup PHP
27+
- name: Setup PHP ${{ matrix.php-version }}
2828
uses: shivammathur/setup-php@v2
2929
with:
3030
php-version: ${{ matrix.php-version }}

.github/workflows/CI-nightly.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
name: Nightly - Symfony ${{ matrix.symfony-version }}
2121
needs: [ static-tests, tests ]
2222
runs-on: ubuntu-latest
23+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
2324
strategy:
2425
fail-fast: false
2526
max-parallel: 4
@@ -40,7 +41,7 @@ jobs:
4041
- name: Check out code
4142
uses: actions/checkout@v2
4243

43-
- name: Setup PHP
44+
- name: Setup PHP ${{ matrix.php-version }}
4445
uses: shivammathur/setup-php@v2
4546
with:
4647
php-version: '${{ matrix.php-version }}'

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
echo "COVERAGE_OUTPUT_STYLE=clover" >> $GITHUB_ENV
5757
echo "COVERAGE_TYPE=xdebug" >> $GITHUB_ENV
5858
59-
- name: Setup PHP
59+
- name: Setup PHP ${{ matrix.php-version }}
6060
uses: shivammathur/setup-php@v2
6161
with:
6262
php-version: '${{ matrix.php-version }}'

0 commit comments

Comments
 (0)