File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 58
58
runs-on : ubuntu-latest
59
59
container : joomlaprojects/docker-images:php8.4
60
60
needs : [composer]
61
+ strategy :
62
+ matrix :
63
+ command : ['php-cs-fixer fix -vvv --dry-run --diff', 'phpcs --extensions=php -p --standard=ruleset.xml .']
61
64
steps :
62
65
- uses : actions/checkout@v4
63
66
- uses : actions/cache/restore@v4
67
70
- name : Check PHP code style
68
71
env :
69
72
PHP_CS_FIXER_IGNORE_ENV : true
70
- run : |
71
- ./libraries/vendor/bin/php-cs-fixer fix -vvv --dry-run --diff
72
- ./libraries/vendor/bin/phpcs --extensions=php -p --standard=ruleset.xml .
73
+ run : ./libraries/vendor/bin/${{ matrix.command }}
73
74
74
75
code-style-js-css :
75
76
name : Check Javascript & CSS code style
@@ -202,7 +203,7 @@ jobs:
202
203
needs : [tests-system-prepare]
203
204
strategy :
204
205
matrix :
205
- browser : ['chrome', 'electron', ' edge']
206
+ browser : ['chrome', 'edge']
206
207
config :
207
208
- php_version : ' 8.4'
208
209
test_group : cmysqlmax
You can’t perform that action at this time.
0 commit comments