missed php 8.1 in ci.yaml

This commit is contained in:
2025-09-05 23:34:57 -07:00
parent ca1c8c614f
commit 99f52422c1

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 }}