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 1
1
name : ' CI - ComposerRequireChecker'
2
2
on :
3
+ workflow_dispatch : # Allows to run the workflow manually from the Actions tab
3
4
workflow_run :
4
5
workflows : ["CI"]
5
6
types :
24
25
steps :
25
26
- uses : actions/checkout@v2
26
27
27
- - name : Setup PHP
28
+ - name : Setup PHP ${{ matrix.php-version }}
28
29
uses : shivammathur/setup-php@v2
29
30
with :
30
31
php-version : ${{ matrix.php-version }}
Original file line number Diff line number Diff line change 1
1
name : ' CI - Dependencies check'
2
2
on :
3
+ workflow_dispatch : # Allows to run the workflow manually from the Actions tab
3
4
workflow_run :
4
5
workflows : ["CI"]
5
6
types :
24
25
steps :
25
26
- uses : actions/checkout@v2
26
27
27
- - name : Setup PHP
28
+ - name : Setup PHP ${{ matrix.php-version }}
28
29
uses : shivammathur/setup-php@v2
29
30
with :
30
31
php-version : ${{ matrix.php-version }}
Original file line number Diff line number Diff line change 1
1
name : ' CI - Nightly'
2
2
on :
3
+ workflow_dispatch : # Allows to run the workflow manually from the Actions tab
3
4
workflow_run :
4
5
workflows : ["CI"]
5
6
types :
20
21
name : Nightly - Symfony ${{ matrix.symfony-version }}
21
22
needs : [ static-tests, tests ]
22
23
runs-on : ubuntu-latest
24
+ if : ${{ github.event.workflow_run.conclusion == 'success' }}
23
25
strategy :
24
26
fail-fast : false
25
27
max-parallel : 4
40
42
- name : Check out code
41
43
uses : actions/checkout@v2
42
44
43
- - name : Setup PHP
45
+ - name : Setup PHP ${{ matrix.php-version }}
44
46
uses : shivammathur/setup-php@v2
45
47
with :
46
48
php-version : ' ${{ matrix.php-version }}'
Original file line number Diff line number Diff line change 1
1
name : ' CI'
2
2
on : # Build any PRs and main branch changes
3
+ workflow_dispatch : # Allows to run the workflow manually from the Actions tab
3
4
pull_request :
4
5
types :
5
6
- opened
56
57
echo "COVERAGE_OUTPUT_STYLE=clover" >> $GITHUB_ENV
57
58
echo "COVERAGE_TYPE=xdebug" >> $GITHUB_ENV
58
59
59
- - name : Setup PHP
60
+ - name : Setup PHP ${{ matrix.php-version }}
60
61
uses : shivammathur/setup-php@v2
61
62
with :
62
63
php-version : ' ${{ matrix.php-version }}'
You can’t perform that action at this time.
0 commit comments