Skip to content

Commit

Permalink
Update CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Nov 6, 2024
1 parent bebae73 commit 532a506
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
# Keys:
# - experimental: Whether the build is "allowed to fail".
matrix:
php: ['7.3', '7.4', '8.0', '8.1']
php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
experimental: [false]

include:
- php: '8.2'
- php: '8.4'
experimental: true

name: "PHP: ${{ matrix.php }}"
Expand All @@ -41,12 +41,12 @@ jobs:

# Install dependencies and handle caching in one go.
# @link https://github.com/marketplace/actions/install-composer-dependencies
- name: "Install Composer dependencies (PHP < 8.2)"
if: ${{ matrix.php < '8.2' }}
- name: "Install Composer dependencies (PHP < 8.4)"
if: ${{ matrix.php < '8.4' }}
uses: "ramsey/composer-install@v1"

- name: "Install Composer dependencies (PHP 8.2)"
if: ${{ matrix.php >= '8.2' }}
- name: "Install Composer dependencies (PHP 8.4)"
if: ${{ matrix.php >= '8.4' }}
uses: "ramsey/composer-install@v1"
with:
composer-options: --ignore-platform-reqs
Expand Down

0 comments on commit 532a506

Please sign in to comment.