From f10148501c5368c86f412548e81ccde8d5b5b904 Mon Sep 17 00:00:00 2001 From: Rob Allen Date: Mon, 24 Jun 2024 19:22:25 +0100 Subject: [PATCH] Fix name of matrix variable --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 34ea39a..d6acb0c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,11 +27,11 @@ jobs: coverage: xdebug - name: Install dependencies with Composer (PHP 8.0) - if: ${{ matrix.php-versions == 8.0 }} + if: ${{ matrix.php == 8.0 }} run: rm composer.lock && composer update - name: Install dependencies with Composer (PHP 8.1+) - if: ${{ matrix.php-versions >= 8.1 }} + if: ${{ matrix.php >= 8.1 }} uses: ramsey/composer-install@v2 - name: Coding standards