File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 79
79
80
80
env :
81
81
SYMFONY_SKELETON_STABILITY : ${{ matrix.symfony-skeleton-stability }}
82
- PHP_CS_FIXER_IGNORE_ENV : ${{ matrix.php-cs-fixer-ignore }}
83
82
84
83
strategy :
85
84
matrix :
@@ -88,20 +87,16 @@ jobs:
88
87
- ' 7.2'
89
88
- ' 7.3'
90
89
- ' 7.4'
91
- php-cs-fixer-ignore :
92
- - ' false'
93
90
symfony-skeleton-stability :
94
91
- ' stable'
95
92
allow-failures : [false]
96
93
include :
97
94
- php-version : ' 7.4'
98
95
symfony-skeleton-stability : ' dev'
99
96
allow-failures : true
100
- php-cs-fixer-ignore : false
101
97
- php-version : ' 8.0'
102
98
symfony-skeleton-stability : ' dev'
103
99
allow-failures : true
104
- php-cs-fixer-ignore : true
105
100
106
101
steps :
107
102
- name : " Checkout code"
Original file line number Diff line number Diff line change @@ -52,6 +52,10 @@ protected function executeMakerCommand(MakerTestDetails $testDetails)
52
52
foreach ($ files as $ file ) {
53
53
$ this ->assertTrue ($ testEnv ->fileExists ($ file ), sprintf ('The file "%s" does not exist after generation ' , $ file ));
54
54
55
+ if (\PHP_VERSION_ID >= 80000 ) {
56
+ continue ;
57
+ }
58
+
55
59
if ('.php ' === substr ($ file , -4 )) {
56
60
$ csProcess = $ testEnv ->runPhpCSFixer ($ file );
57
61
You can’t perform that action at this time.
0 commit comments