Skip to content

Commit

Permalink
Fixing variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre-T committed Mar 24, 2024
1 parent 5ebe6ec commit 2acd03e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ permissions:

jobs:
build:
name: "PHP Tests"
runs-on: ubuntu-latest

strategy:
matrix:
php-version: [ '8.1', '8.2', '8.3' ]
lexer-version: [ '^2.1', '~3.0.0', '^3.1' ]

name: PHP ${{ matrix.php-version }} - Doctrine Lexer ${{ matrix.lexer-version }}

env:
HAS_CC_SECRET: ${{secrets.CC_TEST_REPORTER_ID != '' }}
steps:
Expand All @@ -33,9 +34,9 @@ jobs:
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ lexer-version }}${{ hashFiles('**/composer.lock') }}
key: ${{ runner.os }}-php-${{ matrix.lexer-version }}${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ lexer-version }}
${{ runner.os }}-php-${{ matrix.lexer-version }}
- name: Set up PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
Expand Down

0 comments on commit 2acd03e

Please sign in to comment.