-
-
Notifications
You must be signed in to change notification settings - Fork 1
107 lines (88 loc) · 2.59 KB
/
ci.yml
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
97
98
99
100
101
102
103
104
105
106
107
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
name: Validate composer configuration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate composer.json
run: composer validate
static-analysis:
needs: validate
name: Run static analysis and code style checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
coverage: none
tools: composer:v2
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress
- name: Run static analysis
run: composer analyse
- name: Check coding style
run: composer cs:check
- name: Check Rector rules
run: composer rector:check
security:
needs: validate
name: Run security vulnerability checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
coverage: none
tools: composer:v2
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress
- name: Security check
uses: symfonycorp/security-checker-action@v5
- name: Cache security advisories
uses: actions/cache@v4
with:
path: ~/.symfony/cache
key: security-advisories-${{ github.sha }}
tests:
needs: [security, static-analysis]
runs-on: ubuntu-latest
strategy:
max-parallel: 3
fail-fast: false
matrix:
php: ['8.2', '8.3', '8.4']
stability: [prefer-lowest, prefer-stable]
name: Run tests on PHP ${{ matrix.php }} - ${{ matrix.stability }}
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: pcov
tools: composer:v2
- name: Install dependencies
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
- name: Run tests
run: composer test:all
dependencies-review:
if: github.event_name == 'pull_request'
name: Review dependency changes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/dependency-review-action@v4