Skip to content

Add meaningful type hints to Services and Interfaces #393

Add meaningful type hints to Services and Interfaces

Add meaningful type hints to Services and Interfaces #393

Workflow file for this run

name: Code Quality
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
laravel-lint:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.2]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, zip
tools: composer:2.6
- name: Install Composer Dependencies
run: |
composer install --no-interaction --prefer-dist
working-directory: ./Website/htdocs/mpmanager
- name: Run PHP-CS-Fixer
run: composer run php-cs-fixer-check
working-directory: ./Website/htdocs/mpmanager
- name: Run PHPStan
run: ./vendor/bin/phpstan analyze --error-format=table app/Http app/Services app/Models/ app/Events app/Listeners app/Misc app/modules --memory-limit=2G --level=1
working-directory: ./Website/htdocs/mpmanager
- name: Run Psalm
run: composer run psalm-check
working-directory: ./Website/htdocs/mpmanager
continue-on-error: true