-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (55 loc) · 1.58 KB
/
cgl.yaml
File metadata and controls
65 lines (55 loc) · 1.58 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
63
64
65
name: CGL
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
cgl:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
# Prepare environment
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
# We use the minimum supported PHP version
php-version: 8.2
tools: composer:v2, cs2pr
coverage: none
# Validation
- name: Validate composer.json
run: composer validate --strict
# Install dependencies
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
# Analyze
- name: Analyze dependencies
run: composer analyze:dependencies
# Linting
- name: Lint composer.json
run: composer lint:composer
- name: Lint Editorconfig
run: composer lint:editorconfig
- name: Lint PHP
run: composer lint:php -- --format checkstyle | cs2pr
# Migration
- name: Run Rector migration
run: composer migration:rector -- --dry-run
# SCA
- name: SCA PHP
run: composer sca:php -- --error-format github
# Documentation
- name: Check documentation build
run: |
mkdir -p .Build/docs
composer docs:build -- --no-progress --fail-on-log
# Bundler
- name: Validate bundler config
run: composer validate-bundler-config
- name: Check dependency extraction for TER vendor libraries
run: composer extract-dependencies --print-file-contents --fail