Skip to content

Commit a8f0f92

Browse files
authored
Fix the matrix variable name in CI (#21)
1 parent 52711dd commit a8f0f92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
4242
restore-keys: ${{ runner.os }}-composer-
4343
- name: Install dependencies with composer
44-
if: matrix.php-versions != '8.2'
44+
if: matrix.php-version != '8.2'
4545
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
4646
- name: Install dependencies with composer php 8.2
47-
if: matrix.php-versions == '8.2'
47+
if: matrix.php-version == '8.2'
4848
run: composer update --ignore-platform-reqs --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
4949
- name: Execute Tests
5050
run: |

0 commit comments

Comments
 (0)