Skip to content

Expose private_key_jwt (RFC 7523) + PAR (RFC 9126) config passthrough #9

Expose private_key_jwt (RFC 7523) + PAR (RFC 9126) config passthrough

Expose private_key_jwt (RFC 7523) + PAR (RFC 9126) config passthrough #9

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.2', '8.3', '8.4']
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: pcov
- name: Validate composer.json
run: composer validate --strict
- name: Install dependencies
run: composer update --prefer-dist --no-interaction --no-progress
- name: PHPUnit
run: vendor/bin/phpunit --coverage-text --colors=never