-
-
Notifications
You must be signed in to change notification settings - Fork 76
62 lines (46 loc) · 1.46 KB
/
Copy pathquality.yml
File metadata and controls
62 lines (46 loc) · 1.46 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # v2
with:
php-version: '8.2'
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@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.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