missed php 8.1 in ci.yaml
CI / testsuite (mysql, 8.2, ) (push) Failing after 6m23s Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 5m47s Details
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Failing after 6m14s Details
CI / Coding Standard & Static Analysis (push) Failing after 5m41s Details

This commit is contained in:
Brandon Shipley 2025-09-05 23:34:57 -07:00
parent ca1c8c614f
commit 99f52422c1
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
1 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ jobs:
TEST_MYSQL_USERNAME: root
TEST_MYSQL_PASSWORD:
run: |
if [[ ${{ matrix.php-version }} == '8.1' ]]; then
if [[ ${{ matrix.php-version }} == '8.2' ]]; then
vendor/bin/phpunit --coverage-clover=coverage.xml
else
vendor/bin/phpunit
@ -95,7 +95,7 @@ jobs:
run: vendor/bin/validate-prefer-lowest -m
# - name: Upload coverage reports to Codecov
# if: success() && matrix.php-version == '8.1'
# if: success() && matrix.php-version == '8.2'
# uses: codecov/codecov-action@v4
# with:
# token: ${{ secrets.CODECOV_TOKEN }}