fix(auth): update getRecallerId to cast ID to int
#50
Workflow file for this run
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: Pull Request Check | |
| on: [pull_request] | |
| jobs: | |
| unit-test: | |
| name: Unit testing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' | |
| tools: composer | |
| coverage: none | |
| - name: Cache Composer dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: /tmp/composer-cache | |
| key: ${{ runner.os }}-${{ hashFiles('composer.lock') }} | |
| - name: Installing dependencies | |
| env: | |
| COMPOSER_CACHE_DIR: /tmp/composer-cache | |
| run: composer install --no-interaction --no-progress --prefer-dist | |
| - name: Running unit test | |
| run: vendor/bin/phpunit --configuration phpunit.xml |