feat: add re-identification feature with create endpoint and client i… #156
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |