Skip to content

Commit

Permalink
fix(actions): correct matrix names
Browse files Browse the repository at this point in the history
  • Loading branch information
kokororin committed May 1, 2023
1 parent 27a7d8a commit 796e9f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest]
php: ['7.0', '7.1', '7.2', '7.3', '8.0', '8.1']
name: Test on ${{ matrix.os }} & PHP ${{ matrix.php }}
php-version: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
name: Test on ${{ matrix.os }} & PHP ${{ matrix.php-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Run Lint
run: yarn lint
if: ${{ matrix.os == 'macos-latest' && matrix.php == '7.0' }}
if: ${{ matrix.os == 'macos-latest' && matrix.php-version == '7.0' }}

- name: Run Tests
uses: nick-fields/retry@v2
Expand Down

0 comments on commit 796e9f7

Please sign in to comment.