diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a08bd9..87a1467 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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