Skip to content

feat: add re-identification feature with create endpoint and client i… #156

feat: add re-identification feature with create endpoint and client i…

feat: add re-identification feature with create endpoint and client i… #156

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build-test:
runs-on: ubuntu-22.04
strategy:
matrix:
php-version: [7.4, 8.0, 8.1]
php-extensions: [xdebug]
php-configuration: [phpunit.xml]
php-args: [--coverage-text]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Check PHP Version
run: php -v
- name: Install Composer
uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php-version }}
- name: Install PHPUnit
uses: php-actions/phpunit@v3
with:
php_version: ${{ matrix.php-version }}
php_extensions: ${{ matrix.php-extensions }}
configuration: ${{ matrix.php-configuration }}
args: ${{ matrix.php-args }}
version: 9.5
env:
XDEBUG_MODE: coverage