From 99f52422c1d50ce7a75d1f5896890ec75fc53e9f Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Fri, 5 Sep 2025 23:34:57 -0700 Subject: [PATCH] missed php 8.1 in ci.yaml --- .gitea/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 0dbeb28..85f43aa 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -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 }}