File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11name : ' CI - ComposerRequireChecker'
22on :
3+ workflow_dispatch : # Allows to run the workflow manually from the Actions tab
34 workflow_run :
45 workflows : ["CI"]
56 types :
2425 steps :
2526 - uses : actions/checkout@v2
2627
27- - name : Setup PHP
28+ - name : Setup PHP ${{ matrix.php-version }}
2829 uses : shivammathur/setup-php@v2
2930 with :
3031 php-version : ${{ matrix.php-version }}
Original file line number Diff line number Diff line change 11name : ' CI - Dependencies check'
22on :
3+ workflow_dispatch : # Allows to run the workflow manually from the Actions tab
34 workflow_run :
45 workflows : ["CI"]
56 types :
2425 steps :
2526 - uses : actions/checkout@v2
2627
27- - name : Setup PHP
28+ - name : Setup PHP ${{ matrix.php-version }}
2829 uses : shivammathur/setup-php@v2
2930 with :
3031 php-version : ${{ matrix.php-version }}
Original file line number Diff line number Diff line change 11name : ' CI - Nightly'
22on :
3+ workflow_dispatch : # Allows to run the workflow manually from the Actions tab
34 workflow_run :
45 workflows : ["CI"]
56 types :
2021 name : Nightly - Symfony ${{ matrix.symfony-version }}
2122 needs : [ static-tests, tests ]
2223 runs-on : ubuntu-latest
24+ if : ${{ github.event.workflow_run.conclusion == 'success' }}
2325 strategy :
2426 fail-fast : false
2527 max-parallel : 4
4042 - name : Check out code
4143 uses : actions/checkout@v2
4244
43- - name : Setup PHP
45+ - name : Setup PHP ${{ matrix.php-version }}
4446 uses : shivammathur/setup-php@v2
4547 with :
4648 php-version : ' ${{ matrix.php-version }}'
Original file line number Diff line number Diff line change 11name : ' CI'
22on : # Build any PRs and main branch changes
3+ workflow_dispatch : # Allows to run the workflow manually from the Actions tab
34 pull_request :
45 types :
56 - opened
5657 echo "COVERAGE_OUTPUT_STYLE=clover" >> $GITHUB_ENV
5758 echo "COVERAGE_TYPE=xdebug" >> $GITHUB_ENV
5859
59- - name : Setup PHP
60+ - name : Setup PHP ${{ matrix.php-version }}
6061 uses : shivammathur/setup-php@v2
6162 with :
6263 php-version : ' ${{ matrix.php-version }}'
You can’t perform that action at this time.
0 commit comments