mirror of
https://github.com/LDAPAccountManager/lam.git
synced 2025-10-03 01:39:33 +02:00
62 lines
1.5 KiB
YAML
62 lines
1.5 KiB
YAML
name: "Quality"
|
|
|
|
on:
|
|
push:
|
|
branches: [ develop ]
|
|
pull_request:
|
|
branches: [ develop ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
|
|
- name: Setup PHP with PECL extension
|
|
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2
|
|
with:
|
|
php-version: '8.1'
|
|
extensions: ldap, xdebug, gd, json, xml, curl, zip, mbstring, imagick, pdo_sqlite
|
|
|
|
- name: Validate composer.json and composer.lock
|
|
run: composer validate --strict
|
|
|
|
- name: Cache Composer packages
|
|
id: composer-cache
|
|
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
|
|
with:
|
|
path: vendor
|
|
key: ${{ runner.os }}-quality-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-quality-
|
|
|
|
- name: PHP Version
|
|
run: php --version
|
|
|
|
- name: Install dependencies
|
|
run: composer install --no-progress
|
|
|
|
- name: Install CodeSpell
|
|
run: pipx install codespell
|
|
|
|
- name: CodeSpell
|
|
run: ./codespell.sh
|
|
|
|
- name: PHPStan Version
|
|
run: ./vendor/bin/phpstan -V
|
|
|
|
- name: PHPStan
|
|
run: ./vendor/bin/phpstan
|
|
|
|
- name: Rector
|
|
run: ./vendor/bin/rector process --dry-run
|