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 2929 - name : Setup PHP
3030 uses : shivammathur/setup-php@v2
3131 with :
32- php-version : ' 8.1 '
32+ php-version : ' 8.2 '
3333 extensions : mbstring, intl
3434 coverage : none
3535 tools : phive, cs2pr
Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ jobs:
1313 strategy :
1414 fail-fast : false
1515 matrix :
16- php-version : ['8.1 ']
16+ php-version : ['8.2 ']
1717 db-type : [mysql, pgsql]
1818 dependencies : [highest]
1919 unstable : [false]
2020 include :
21- - php-version : ' 8.1 '
21+ - php-version : ' 8.2 '
2222 db-type : sqlite
2323 dependencies : lowest
2424 unstable : false
@@ -78,14 +78,14 @@ jobs:
7878 if [[ ${{ matrix.db-type }} == 'pgsql' ]]; then
7979 export DB_URL='postgres://postgres:[email protected] /postgres' 8080 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
8282 vendor/bin/phpunit --display-warnings --display-deprecations --display-incomplete --display-skipped --coverage-clover=coverage.xml
8383 else
8484 vendor/bin/phpunit --display-warnings --display-deprecations
8585 fi
8686
8787 - 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'
8989 uses : codecov/codecov-action@v5
9090 with :
9191 token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ jobs:
1313 strategy :
1414 fail-fast : false
1515 matrix :
16- php-version : ['8.1 ', '8.2 ', '8.3 ']
16+ php-version : ['8.2 ', '8.3 ', '8.4 ']
1717 dependencies : [highest]
1818 unstable : [false]
1919 include :
20- - php-version : ' 8.1 '
20+ - php-version : ' 8.2 '
2121 dependencies : lowest
2222 unstable : false
2323 - php-version : ' 8.4'
@@ -45,14 +45,14 @@ jobs:
4545
4646 - name : Run PHPUnit
4747 run : |
48- if [[ ${{ matrix.php-version }} == '8.1 ' && ${{ matrix.dependencies }} == 'highest' ]]; then
48+ if [[ ${{ matrix.php-version }} == '8.2 ' && ${{ matrix.dependencies }} == 'highest' ]]; then
4949 export CODECOVERAGE=1 && vendor/bin/phpunit --display-warnings --display-deprecations --display-incomplete --display-skipped --coverage-clover=coverage.xml
5050 else
5151 vendor/bin/phpunit --display-warnings --display-deprecations
5252 fi
5353
5454 - 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'
5656 uses : codecov/codecov-action@v5
5757 with :
5858 token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments