migrate userinfo endpoint to from display api v1 to v2 #256
This file contains 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: Run Static analysis | |
on: | |
push: | |
branches: [ "master", "develop", "staging" ] | |
pull_request: | |
branches: [ "master", "develop", "staging" ] | |
jobs: | |
php-cs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e | |
with: | |
php-version: '8.2' | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: Running static analysis | |
run: vendor/bin/phpstan analyse --memory-limit=2G |