-
Notifications
You must be signed in to change notification settings - Fork 105
43 lines (38 loc) · 1.15 KB
/
ci.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
name: CI
on:
push:
branches:
- main
pull_request:
release:
jobs:
tests:
name: PHP ${{ matrix.php }}, SF ${{ matrix.symfony }} - ${{ matrix.deps }}
runs-on: ubuntu-latest
strategy:
matrix:
php: [ 8.1, 8.2, 8.3 ]
deps: [ highest ]
symfony: [ 5.4.*, 6.3.*, 6.4.* ]
include:
- php: 8.1
deps: lowest
symfony: '*'
- php: 8.3
symfony: '7.0.*'
- php: 8.3
symfony: '7.1.*'
steps:
- uses: zenstruck/.github@php-test-symfony
with:
php: ${{ matrix.php }}
symfony: ${{ matrix.symfony }}
deps: ${{ matrix.deps }}
composer-validate:
uses: zenstruck/.github/.github/workflows/php-composer-validate.yml@main
cs:
uses: zenstruck/.github/.github/workflows/php-cs-fixer.yml@main
with:
php: 8.1
sca:
uses: zenstruck/.github/.github/workflows/php-stan.yml@main