Skip to content

Commit

Permalink
Start testing on PHP 8.2 and 8.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
bojanz committed Jan 13, 2025
1 parent 6372130 commit 245bb61
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,23 @@ name: Build
on: [push, pull_request]

jobs:
build-test:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3']
name: PHPUnit @ PHP ${{ matrix.php-versions }}

steps:
- uses: actions/checkout@v4
- uses: php-actions/composer@v6

- name: PHPUnit Tests PHP 8.1
uses: php-actions/phpunit@master
- uses: php-actions/phpunit@master
with:
bootstrap: vendor/autoload.php
configuration: phpunit.xml
args: --coverage-text
php_extensions: xdebug bcmath
php_version: 8.1
php_version: ${{ matrix.php-versions }}
version: 9
env:
XDEBUG_MODE: coverage
XDEBUG_MODE: coverage

0 comments on commit 245bb61

Please sign in to comment.