Skip to content

Commit

Permalink
adding 8.3 to build matrix
Browse files Browse the repository at this point in the history
8.3 is in RC, so add it to the matrix. currently failing because many libraries do not
support it yet. bump 8.2 to non-experimental, which should have happened some time ago.
  • Loading branch information
brettmc committed Aug 31, 2023
1 parent 73ff5ad commit a914386
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['7.4', '8.0', '8.1']
php-version: ['7.4', '8.0', '8.1', '8.2']
experimental: [false]
composer_args: ""
include:
- php-version: 8.2
- php-version: 8.3
experimental: true
composer_args: "--ignore-platform-reqs"

steps:
- uses: actions/checkout@v3
Expand All @@ -44,7 +46,7 @@ jobs:
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
run: composer install --prefer-dist --no-progress --no-suggest ${{ matrix.composer_args }}

- name: Check Style
continue-on-error: ${{ matrix.experimental }}
Expand Down

0 comments on commit a914386

Please sign in to comment.