Skip to content

Added named arguments to docs #30

Added named arguments to docs

Added named arguments to docs #30

Workflow file for this run

name: PHPUnit
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.2]
extension: [":bcmath", ":gmp"]
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
extensions: ${{ matrix.extension }}
- run: composer install --prefer-dist --no-interaction
- run: vendor/bin/phpunit --coverage-text