@@ -25,26 +25,26 @@ jobs:
25
25
strategy :
26
26
matrix :
27
27
php-version :
28
- - ' 7.3'
29
- - ' 7.4'
28
+ - 7.3
29
+ - 7.4
30
30
dependencies : [highest]
31
31
allowed-to-fail : [false]
32
- symfony-require : ["" ]
32
+ symfony-require : ['' ]
33
33
variant : [normal]
34
34
include :
35
- - php-version : ' 7.3'
35
+ - php-version : 7.3
36
36
dependencies : lowest
37
37
allowed-to-fail : false
38
38
variant : normal
39
- - php-version : ' 8.0'
39
+ - php-version : 8.0
40
40
dependencies : highest
41
41
allowed-to-fail : true
42
42
variant : normal
43
- - php-version : ' 7.4'
43
+ - php-version : 7.4
44
44
dependencies : highest
45
45
allowed-to-fail : false
46
46
symfony-require : 4.4.*
47
- variant : ' symfony/symfony:"4.4.*"'
47
+ variant : symfony/symfony:"4.4.*"
48
48
49
49
steps :
50
50
- name : Checkout
64
64
if : matrix.php-version == '8.0'
65
65
run : composer config platform.php 7.4.99
66
66
67
- - name : " Globally install symfony/flex"
67
+ - name : Globally install symfony/flex
68
68
if : matrix.symfony-require != ''
69
- run : " composer global require --no-progress --no-scripts --no-plugins symfony/flex"
69
+ run : composer global require --no-progress --no-scripts --no-plugins symfony/flex
70
70
71
71
- name : Install variant
72
72
if : matrix.variant != 'normal' && !startsWith(matrix.variant, 'symfony/symfony')
@@ -79,16 +79,16 @@ jobs:
79
79
if : matrix.symfony-require == '6.0.*'
80
80
run : composer remove vimeo/psalm psalm/plugin-phpunit psalm/plugin-symfony weirdan/doctrine-psalm-plugin --dev --no-update --no-interaction
81
81
82
- - name : " Install Composer dependencies (${{ matrix.dependencies }})"
83
- uses : " ramsey/composer-install@v1"
82
+ - name : Install Composer dependencies (${{ matrix.dependencies }})
83
+ uses : ramsey/composer-install@v1
84
84
with :
85
- dependency-versions : " ${{ matrix.dependencies }}"
86
- composer-options : " --prefer-dist --prefer-stable"
85
+ dependency-versions : ${{ matrix.dependencies }}
86
+ composer-options : --prefer-dist --prefer-stable
87
87
88
88
- name : Run Tests with coverage
89
89
run : make coverage
90
90
91
91
- name : Send coverage to Codecov
92
- uses : codecov/codecov-action@v1
92
+ uses : codecov/codecov-action@v2
93
93
with :
94
94
file : build/logs/clover.xml
0 commit comments