-
Notifications
You must be signed in to change notification settings - Fork 61
111 lines (91 loc) · 3.39 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
108
109
110
111
name: Build
on: [ pull_request ]
jobs:
tests:
runs-on: ubuntu-latest
name: Test
env:
SYMFONY_REQUIRE: "${{ matrix.symfony_require }}"
services:
mysql:
image: mysql:8.0
env:
MYSQL_ALLOW_EMPTY_PASSWORD: true
ports:
- 3306:3306
options: --health-cmd "mysqladmin ping --silent"
strategy:
fail-fast: false
matrix:
include:
- php: 7.4
composer_flags: --prefer-lowest
test_make_target: test_phpunit_legacy
- php: 7.4
symfony_require: 5.4.*
test_make_target: test_phpunit_legacy
- php: 8.0
test_make_target: test_phpunit_legacy
- php: 8.1
test_make_target: test
- php: 8.2
symfony_require: 6.3.*
test_make_target: test
- php: 8.3
symfony_require: 6.4.*
test_make_target: test
- php: 8.2
symfony_require: 7.0.*
test_make_target: test
- php: 8.3
stability: dev
test_make_target: test
- php: 8.4
stability: dev
test_make_target: test
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
coverage: none
- name: Configure Composer minimum stability
if: matrix.stability
run: composer config minimum-stability ${{ matrix.stability }}
- name: Remove CS fixer
run: composer remove friendsofphp/php-cs-fixer --no-update --dev
- name: Install symfony/flex
run: composer global config allow-plugins.symfony/flex true && composer global require symfony/flex
- name: Install dependencies
run: composer update ${{ matrix.composer_flags }} --prefer-dist
- name: Phpunit
run: make ${{ matrix.test_make_target }}
- name: Behat
run: make behat
php-stan:
runs-on: ubuntu-latest
name: php-stan
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.2"
- name: Install dependencies
run: composer update --prefer-dist
- name: PHPStan
run: make phpstan
cs-fixer:
runs-on: ubuntu-latest
name: CS-Fixer
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.2"
- name: Install dependencies
run: composer update --prefer-dist
- name: PHP CS Fixer
run: make php_cs_fixer_check