diff options
-rw-r--r-- | .github/workflows/phpunit.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml index ba7dac6..cde3d08 100644 --- a/.github/workflows/phpunit.yaml +++ b/.github/workflows/phpunit.yaml @@ -42,7 +42,7 @@ jobs: MYSQL_PASSWORD: password - name: Get Code Coverage run: php tests/coverage.php - if: matrix.php == '7.4' + if: matrix.php-versions == '7.4' - name: Upload Code Coverage uses: schneegans/dynamic-badges-action@v1.0.0 with: @@ -52,12 +52,12 @@ jobs: label: Code Coverage message: ${{ env.COVERAGE }} color: green - if: matrix.php == '7.4' + if: matrix.php-versions == '7.4' continue-on-error: true # if is fork - name: Scrutinizer Code Coverage run: | wget https://scrutinizer-ci.com/ocular.phar php ocular.phar code-coverage:upload --format=php-clover build/coverage/coverage.clover - if: matrix.php == '7.4' + if: matrix.php-versions == '7.4' continue-on-error: true # if is fork |