From 0458fa7bc76fed3cbdfdc0e839785bae96314b41 Mon Sep 17 00:00:00 2001 From: gaalferov Date: Mon, 5 Jun 2023 10:13:57 +0200 Subject: [PATCH] rename variable --- .github/workflows/ci-phpunit.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-phpunit.yml b/.github/workflows/ci-phpunit.yml index 20ed972..172ef36 100644 --- a/.github/workflows/ci-phpunit.yml +++ b/.github/workflows/ci-phpunit.yml @@ -11,12 +11,12 @@ on: jobs: phpunit-tests: - name: PHP ${{ matrix.php }} Latest + name: PHP ${{ matrix.php-version }} Latest runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest ] - php: [ '7.4','8.0','8.1','8.2' ] + php-version: [ '7.4','8.0','8.1','8.2' ] steps: - name: Checkout @@ -26,7 +26,7 @@ jobs: id: setup-php uses: shivammathur/setup-php@v2 with: - php-version: ${{ matrix.php }} + php-version: ${{ matrix.php-version }} extensions: mbstring, intl, curl - name: Print PHP version