Skip to content

Commit

Permalink
Update PHP version matrix in GitHub workflow
Browse files Browse the repository at this point in the history
The PHP version matrix for GitHub Actions was modified to include PHP 8.2. Now our test suite will also validate the compatibility with this PHP version, ensuring our code runs as expected on an expanded range of PHP environments.
  • Loading branch information
koriym committed Jun 28, 2024
1 parent 3a68d03 commit b6bb519
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
php-version: ['8.0', '8.1']
php-version: ['8.0', '8.1', '8.2', '8.3']

steps:
- name: Checkout code
Expand All @@ -38,4 +38,4 @@ jobs:
- name: Run demo
run: |
php -d extension=./modules/rayaop.so -i | grep rayaop
php -d extension=./modules/rayaop.so rayaop.php
timeout 60s php -d extension=./modules/rayaop.so -d memory_limit=128M -d report_memleaks=1 -d zend.assertions=1 -d assert.exception=1 rayaop.php 2> php_stderr.log || true

0 comments on commit b6bb519

Please sign in to comment.