Throw descriptive exception message on 401 and 403 responses in ticke… #570
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: Static Analysis | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| jobs: | |
| phpstan: | |
| name: phpstan static code analysis | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| php-version: '7.4' | |
| - os: ubuntu-latest | |
| php-version: '8.0' | |
| - os: ubuntu-latest | |
| php-version: '8.1' | |
| - os: ubuntu-latest | |
| php-version: '8.2' | |
| - os: ubuntu-latest | |
| php-version: '8.3' | |
| - os: ubuntu-latest | |
| php-version: '8.4' | |
| - os: ubuntu-latest | |
| php-version: '8.5' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Get tags | |
| run: git fetch --tags origin | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| coverage: none # disable xdebug, pcov | |
| - name: Composer install | |
| uses: ramsey/composer-install@v4 | |
| with: | |
| composer-options: '--ansi --prefer-dist' | |
| - name: Run phpstan analysis | |
| run: vendor/bin/phpstan analyse --ansi |