-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (41 loc) · 1.08 KB
/
cgl.yaml
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
name: CGL
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
cgl:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Prepare environment
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer:v2, composer-unused
coverage: none
# Validation
- name: Validate composer.json
run: composer validate
# Install dependencies
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
# Check Composer dependencies
- name: Check for unused dependencies
run: composer-unused --excludePackage=cpsit/project-builder
# Linting
- name: Lint composer.json
run: composer lint:composer
- name: Lint .editorconfig
run: composer lint:editorconfig
- name: Lint Twig templates
run: composer lint:twig
# Schema
- name: Validate config.yaml against JSON schema
run: composer validate-schema