Skip to content

Commit

Permalink
Add PHP 8.4 to workflows (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
andypost authored Jul 25, 2024
1 parent 93a820e commit e393370
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,23 @@ jobs:
codecov:
- false

coverage:
- pcov
tools:
- composer:v2

include:
- os: ubuntu-latest
php-version: "8.3"
dependencies: highest
codecov: true
php-ini-values: assert.exception=1, zend.assertions=1, opcache.enable=1, opcache.enable_cli=1, opcache.optimization_level=-1, opcache.jit_buffer_size=4096M, opcache.jit=1205
- os: ubuntu-latest
php-version: "8.4"
tools: composer:snapshot
dependencies: highest
coverage: none
php-ini-values: zend.assertions=1, opcache.enable=1, opcache.enable_cli=1, opcache.optimization_level=-1, opcache.jit_buffer_size=2048M, opcache.jit=1205

steps:
- name: Checkout
Expand All @@ -111,7 +122,8 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: pcov
coverage: ${{ matrix.coverage }}
tools: ${{ matrix.tools }}
extensions: ${{ env.PHP_EXTENSIONS }}
ini-values: ${{ matrix.php-ini-values }}

Expand Down

0 comments on commit e393370

Please sign in to comment.