Skip to content

Bump to v4.3.0

Bump to v4.3.0 #42

Workflow file for this run

name: PHP 8
on:
- push
- pull_request
jobs:
run:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2', '8.3']
name: PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: gmp
- name: Display versions
run: |
php -r 'foreach (get_loaded_extensions() as $extension) echo $extension . " " . phpversion($extension) . PHP_EOL;'
php -i
- name: Composer install
run: composer install -n
- name: PHPUnit
run: vendor/bin/phpunit
- name: Test Coverage
run: vendor/bin/phpunit --coverage-text