Skip to content

fix(auth): update getRecallerId to cast ID to int #50

fix(auth): update getRecallerId to cast ID to int

fix(auth): update getRecallerId to cast ID to int #50

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