File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 29
29
- name : Setup PHP
30
30
uses : shivammathur/setup-php@v2
31
31
with :
32
- php-version : ' 8.1 '
32
+ php-version : ' 8.2 '
33
33
extensions : mbstring, intl
34
34
coverage : none
35
35
tools : phive, cs2pr
Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ jobs:
13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
- php-version : ['8.1 ']
16
+ php-version : ['8.2 ']
17
17
db-type : [mysql, pgsql]
18
18
dependencies : [highest]
19
19
unstable : [false]
20
20
include :
21
- - php-version : ' 8.1 '
21
+ - php-version : ' 8.2 '
22
22
db-type : sqlite
23
23
dependencies : lowest
24
24
unstable : false
@@ -78,14 +78,14 @@ jobs:
78
78
if [[ ${{ matrix.db-type }} == 'pgsql' ]]; then
79
79
export DB_URL='postgres://postgres:[email protected] /postgres'
80
80
fi
81
- if [[ ${{ matrix.php-version }} == '8.1 ' && ${{ matrix.db-type }} == 'mysql' ]]; then
81
+ if [[ ${{ matrix.php-version }} == '8.2 ' && ${{ matrix.db-type }} == 'mysql' ]]; then
82
82
vendor/bin/phpunit --display-warnings --display-deprecations --display-incomplete --display-skipped --coverage-clover=coverage.xml
83
83
else
84
84
vendor/bin/phpunit --display-warnings --display-deprecations
85
85
fi
86
86
87
87
- name : Code Coverage Report
88
- if : success() && matrix.php-version == '8.1 ' && matrix.db-type == 'mysql'
88
+ if : success() && matrix.php-version == '8.2 ' && matrix.db-type == 'mysql'
89
89
uses : codecov/codecov-action@v5
90
90
with :
91
91
token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ jobs:
13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
- php-version : ['8.1 ', '8.2 ', '8.3 ']
16
+ php-version : ['8.2 ', '8.3 ', '8.4 ']
17
17
dependencies : [highest]
18
18
unstable : [false]
19
19
include :
20
- - php-version : ' 8.1 '
20
+ - php-version : ' 8.2 '
21
21
dependencies : lowest
22
22
unstable : false
23
23
- php-version : ' 8.4'
@@ -45,14 +45,14 @@ jobs:
45
45
46
46
- name : Run PHPUnit
47
47
run : |
48
- if [[ ${{ matrix.php-version }} == '8.1 ' && ${{ matrix.dependencies }} == 'highest' ]]; then
48
+ if [[ ${{ matrix.php-version }} == '8.2 ' && ${{ matrix.dependencies }} == 'highest' ]]; then
49
49
export CODECOVERAGE=1 && vendor/bin/phpunit --display-warnings --display-deprecations --display-incomplete --display-skipped --coverage-clover=coverage.xml
50
50
else
51
51
vendor/bin/phpunit --display-warnings --display-deprecations
52
52
fi
53
53
54
54
- name : Code Coverage Report
55
- if : success() && matrix.php-version == '8.1 ' && matrix.dependencies == 'highest'
55
+ if : success() && matrix.php-version == '8.2 ' && matrix.dependencies == 'highest'
56
56
uses : codecov/codecov-action@v5
57
57
with :
58
58
token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments