Skip to content

Commit 3179da0

Browse files
committed
parallel
1 parent b2c62b7 commit 3179da0

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ jobs:
5858
runs-on: ubuntu-latest
5959
container: joomlaprojects/docker-images:php8.4
6060
needs: [composer]
61+
strategy:
62+
matrix:
63+
command: ['php-cs-fixer fix -vvv --dry-run --diff', 'phpcs --extensions=php -p --standard=ruleset.xml .']
6164
steps:
6265
- uses: actions/checkout@v4
6366
- uses: actions/cache/restore@v4
@@ -67,9 +70,7 @@ jobs:
6770
- name: Check PHP code style
6871
env:
6972
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 }}
7374

7475
code-style-js-css:
7576
name: Check Javascript & CSS code style
@@ -202,7 +203,7 @@ jobs:
202203
needs: [tests-system-prepare]
203204
strategy:
204205
matrix:
205-
browser: ['chrome', 'electron', 'edge']
206+
browser: ['chrome', 'edge']
206207
config:
207208
- php_version: '8.4'
208209
test_group: cmysqlmax

0 commit comments

Comments
 (0)