mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-28 12:44:46 +02:00

* add PHPStan to workflow Co-authored-by: Boy132 <Boy132@users.noreply.github.com> Co-authored-by: Djordy <djordy@lap-0394-djordy-koert.local> Co-authored-by: Lance Pioch <lancepioch@gmail.com>
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
name: Lint
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
pint:
|
|
name: Pint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Code Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: "8.3"
|
|
extensions: bcmath, curl, gd, mbstring, mysql, openssl, pdo, tokenizer, xml, zip
|
|
tools: composer:v2
|
|
coverage: none
|
|
|
|
- name: Setup .env
|
|
run: cp .env.example .env
|
|
|
|
- name: Install dependencies
|
|
run: composer install --no-interaction --no-progress --prefer-dist
|
|
|
|
- name: Pint
|
|
run: vendor/bin/pint --test
|
|
phpstan:
|
|
name: PHPStan
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Code Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: "8.3"
|
|
extensions: bcmath, curl, gd, mbstring, mysql, openssl, pdo, tokenizer, xml, zip
|
|
tools: composer:v2
|
|
coverage: none
|
|
|
|
- name: Setup .env
|
|
run: cp .env.example .env
|
|
|
|
- name: Install dependencies
|
|
run: composer install --no-interaction --no-progress --prefer-dist
|
|
|
|
- name: PHPStan
|
|
run: vendor/bin/phpstan --memory-limit=-1
|