-
-
Notifications
You must be signed in to change notification settings - Fork 5
40 lines (32 loc) · 1.03 KB
/
php_linter.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
- name: Install Composer Dependencies
run: |
composer install --no-interaction --prefer-dist
working-directory: ./Website/htdocs/mpmanager
- name: Run Code sniffer
run: ./vendor/bin/phpcs --standard=PSR12 --tab-width=4 --exclude=Generic.Files.LineLength app/
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