8000 Fix: return type mismatch between screen facade and screen class methods. (#463) · SRWieZ/fork-nativephp-laravel@36abbb6 · GitHub
[go: up one dir, main page]

Skip to content

Fix: return type mismatch between screen facade and screen class meth… #6

Fix: return type mismatch between screen facade and screen class meth…

Fix: return type mismatch between screen facade and screen class meth… #6

Workflow file for this run

name: PHPStan
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
phpstan:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
php: [8.3]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Run analysis
run: ./vendor/bin/phpstan analyse --error-format=github
0