-
-
Notifications
You must be signed in to change notification settings - Fork 261
96 lines (71 loc) · 2.13 KB
/
lint.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# DO NOT EDIT THIS FILE!
#
# It's auto-generated by sonata-project/dev-kit package.
name: Lint
on:
schedule:
- cron: '30 0 * * *'
push:
branches:
- 1.x
- 2.x
pull_request:
permissions:
contents: read
jobs:
php-cs-fixer:
name: PHP-CS-Fixer
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: none
tools: composer:v2
- name: Install Composer dependencies (highest)
uses: ramsey/composer-install@v3
with:
dependency-versions: highest
- name: Lint PHP files
run: make lint-php
composer:
name: Composer
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: none
tools: composer:v2, composer-normalize:2
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Lint Composer
run: make lint-composer
yaml-files:
name: YAML files
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install yamllint
run: sudo apt-get install yamllint
- name: Lint files
run: make lint-yaml
xml-files:
name: XML files
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install required dependencies
run: sudo apt-get update && sudo apt-get install libxml2-utils
- name: Lint xml files
run: make lint-xml
- name: Lint xliff files
run: make lint-xliff