Skip to content

Commit 006b627

Browse files
szepeviktorBenMorel
authored andcommitted
Improve ECS workflow
1 parent 18f24f0 commit 006b627

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

.github/workflows/coding-standard.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,21 @@ on:
2626

2727
jobs:
2828
coding-standard:
29-
name: Coding Standard
29+
name: "Coding Standard (PHP ${{ inputs.php-version }})"
3030
runs-on: ubuntu-latest
3131

32-
strategy:
33-
matrix:
34-
php-version:
35-
- "${{ inputs.php-version }}"
36-
3732
steps:
38-
- name: Checkout
39-
uses: actions/checkout@v2
33+
- name: Checkout repository
34+
uses: actions/checkout@v5
4035

4136
- name: Setup PHP
4237
uses: shivammathur/setup-php@v2
4338
with:
4439
coverage: "none"
45-
php-version: "${{ matrix.php-version }}"
40+
php-version: "${{ inputs.php-version }}"
4641

47-
- name: Install composer dependencies
48-
uses: "ramsey/composer-install@v2"
42+
- name: Install Composer dependencies
43+
uses: "ramsey/composer-install@v3"
4944
with:
5045
working-directory: "${{ inputs.working-directory }}"
5146
composer-options: "${{ inputs.composer-options }}"

0 commit comments

Comments
 (0)