Skip to content

Commit 0a83997

Browse files
Make github actions example more up to date (#74)
* Make github actions example more up to date * Update testing matrix in README.md The testing matrix has been updated with new versions for operating system, PHP, and Symfony. Additionally, certain combinations leading to incompatible scenarios have been excluded to ensure efficient testing. --------- Co-authored-by: chapterjason <[email protected]>
1 parent f6c5034 commit 0a83997

File tree

1 file changed

+34
-3
lines changed

1 file changed

+34
-3
lines changed

README.md

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,40 @@ jobs:
101101
name: PHP ${{ matrix.php }} and Symfony ${{ matrix.symfony }}
102102
strategy:
103103
matrix:
104-
operating-system: [ ubuntu-latest, windows-latest ]
105-
php: [ '7.4', '8.0', '8.1' ]
106-
symfony: ['4.4.*', '5.3.*', '5.4.*', '6.0.*', '6.1.*']
104+
operating-system: [ 'ubuntu-22.04', 'windows-2022' ]
105+
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
106+
symfony: ['5.4.*', '6.4.*', '7.0.*']
107+
exclude:
108+
- php: '7.4'
109+
symfony: '6.4.*'
110+
operating-system: 'ubuntu-22.04'
111+
- php: '8.0'
112+
symfony: '6.4.*'
113+
operating-system: 'ubuntu-22.04'
114+
- php: '7.4'
115+
symfony: '7.0.*'
116+
operating-system: 'ubuntu-22.04'
117+
- php: '8.0'
118+
symfony: '7.0.*'
119+
operating-system: 'ubuntu-22.04'
120+
- php: '8.1'
121+
symfony: '7.0.*'
122+
operating-system: 'ubuntu-22.04'
123+
- php: '7.4'
124+
symfony: '6.4.*'
125+
operating-system: 'windows-2022'
126+
- php: '8.0'
127+
symfony: '6.4.*'
128+
operating-system: 'windows-2022'
129+
- php: '7.4'
130+
symfony: '7.0.*'
131+
operating-system: 'windows-2022'
132+
- php: '8.0'
133+
symfony: '7.0.*'
134+
operating-system: 'windows-2022'
135+
- php: '8.1'
136+
symfony: '7.0.*'
137+
operating-system: 'windows-2022'
107138

108139
steps:
109140
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)