-
Notifications
You must be signed in to change notification settings - Fork 4
41 lines (37 loc) · 1.13 KB
/
install.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
name: Bundle install
on:
pull_request:
jobs:
sy60:
strategy:
matrix:
sf: [ '6.0.*' ]
php: [ '8.0', '8.1', '8.2' , '8.3' ]
composer-flag: [ '--prefer-lowest', '--ansi' ]
uses: jawira/doctrine-diagram-bundle/.github/workflows/install-bundle.yaml@update-ga
with:
symfony: ${{ matrix.sf }}
php: ${{ matrix.php }}
composer-flag: ${{ matrix.composer-flag }}
sy61:
strategy:
matrix:
sf: [ '6.1.*','6.2.*','6.3.*','6.4.*' ]
php: [ '8.1', '8.2' , '8.3' ]
composer-flag: [ '--prefer-lowest', '--ansi' ]
uses: jawira/doctrine-diagram-bundle/.github/workflows/install-bundle.yaml@update-ga
with:
symfony: ${{ matrix.sf }}
php: ${{ matrix.php }}
composer-flag: ${{ matrix.composer-flag }}
sy70:
strategy:
matrix:
sf: [ '7.0.*' ]
php: [ '8.2' , '8.3' ]
composer-flag: [ '--prefer-lowest', '--ansi' ]
uses: jawira/doctrine-diagram-bundle/.github/workflows/install-bundle.yaml@update-ga
with:
symfony: ${{ matrix.sf }}
php: ${{ matrix.php }}
composer-flag: ${{ matrix.composer-flag }}