mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-28 11:34:45 +02:00

* Remove `--prefer-dist` * Add missing args `--no-autoloader` `--no-suggest` `--no-progress` `--no-scripts` `--no-dev`
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-suggest --no-progress --no-autoloader --no-scripts
|
|
|
|
- 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-suggest --no-progress --no-scripts
|
|
|
|
- name: PHPStan
|
|
run: vendor/bin/phpstan --memory-limit=-1
|