File tree 2 files changed +11
-6
lines changed
2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 14
14
fail-fast : false
15
15
matrix :
16
16
operating-system : ['ubuntu-latest']
17
- php : ['8.1', '8.2', '8.3', '8.4']
17
+ php :
18
+ - ' 8.5'
19
+ - ' 8.4'
20
+ - ' 8.3'
21
+ - ' 8.2'
22
+ - ' 8.1'
18
23
19
24
steps :
20
25
- name : Checkout
@@ -30,11 +35,11 @@ jobs:
30
35
tools : none
31
36
32
37
- name : " Install Composer dependencies"
33
- if : ${{ matrix.php <= '8.3 ' }}
38
+ if : ${{ matrix.php <= '8.4 ' }}
34
39
uses : " ramsey/composer-install@v2"
35
40
36
- - name : " Install Composer dependencies (PHP 8.4 )"
37
- if : ${{ matrix.php >= '8.4 ' }}
41
+ - name : " Install Composer dependencies (PHP 8.5 )"
42
+ if : ${{ matrix.php >= '8.5 ' }}
38
43
uses : " ramsey/composer-install@v2"
39
44
with :
40
45
composer-options : --ignore-platform-reqs
43
48
run : composer run phpunit -- --coverage-clover .phpunit.cache/clover.xml
44
49
45
50
- name : Upload coverage reports to Codecov
46
- if : ${{ success() && matrix.php == '8.3 ' }}
51
+ if : ${{ success() && matrix.php == '8.4 ' }}
47
52
uses : codecov/codecov-action@v3
48
53
env :
49
54
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 13
13
}
14
14
],
15
15
"require" : {
16
- "php" : " ~8.1.0 || ~8.2.0 || ~8.3.0"
16
+ "php" : " ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 "
17
17
},
18
18
"require-dev" : {
19
19
"friendsofphp/php-cs-fixer" : " ^3.40" ,
You can’t perform that action at this time.
0 commit comments