We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 061ae24 commit 6bb84e7Copy full SHA for 6bb84e7
.github/workflows/ci.yml
@@ -17,23 +17,19 @@ jobs:
17
strategy:
18
fail-fast: false
19
matrix:
20
+ php: ['8.1', '8.2', '8.3', '8.4']
21
+ doctrine-orm: ['2.14', '3.0', 'latest']
22
include:
- - php: '8.1'
- - php: '8.2'
23
- - php: '8.3'
24
- php: '8.4'
25
calculate-code-coverage: true
26
- - doctrine-orm: '2.14'
27
- - doctrine-orm: '3.0'
28
- - doctrine-orm: 'latest'
29
30
steps:
31
- uses: actions/checkout@v4
32
33
- name: Set up PHP with PECL extension
34
uses: shivammathur/setup-php@v2
35
with:
36
- php-version: ${{ matrix.php || '8.4' }}
+ php-version: ${{ matrix.php }}
37
coverage: xdebug
38
extensions: ctype, json, mbstring
39
tools: composer
0 commit comments