We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
windows-latest
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Version
v1
v2
Runners
Operating systems
PHP versions
To Reproduce See .github/workflows/ci.yml in sebastianbergmann/php-code-coverage:
.github/workflows/ci.yml
sebastianbergmann/php-code-coverage
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions on: - pull_request - push name: CI env: COMPOSER_ROOT_VERSION: "10.1-dev" jobs: tests: name: Tests runs-on: ${{ matrix.os }} env: PHP_EXTENSIONS: dom, json, libxml, mbstring, pdo_sqlite, soap, xml, xmlwriter, :apcu, :imagick PHP_INI_VALUES: memory_limit=-1, assert.exception=1, zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On strategy: fail-fast: false matrix: os: - ubuntu-latest - windows-latest php-version: - "8.1" - "8.2" - "8.3" coverage-driver: - "pcov" - "xdebug3" steps: - name: Configure Git to avoid issues with line endings if: matrix.os == 'windows-latest' run: git config --global core.autocrlf false - name: Checkout uses: actions/checkout@v3 - name: Install PHP with extensions uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} coverage: ${{ matrix.coverage-driver }} extensions: ${{ env.PHP_EXTENSIONS }} ini-values: ${{ env.PHP_INI_VALUES }} tools: none - name: Install dependencies with Composer run: php ./tools/composer update --no-ansi --no-interaction --no-progress - name: Run tests with PHPUnit run: vendor/bin/phpunit --coverage-clover=coverage.xml - name: Send code coverage report to Codecov.io uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }}
Expected behavior Set up PHP fails or Xdebug is installed
Screenshots/Logs See https://github.com/sebastianbergmann/php-code-coverage/actions/runs/4447135572/jobs/7808303371#step:4:35
Additional context Perhaps related to #700.
Are you willing to submit a PR? n/a
The text was updated successfully, but these errors were encountered:
Yes, it is related to #700, I will try to do a release this weekend.
Sorry, something went wrong.
Fix released in 2.25.0.
2.25.0
Thank you, @shivammathur!
shivammathur
No branches or pull requests
Describe the bug
Version
v1
orv2
.v2
v1
Runners
Operating systems
windows-latest
PHP versions
To Reproduce
See
.github/workflows/ci.yml
insebastianbergmann/php-code-coverage
:Expected behavior
Set up PHP fails or Xdebug is installed
Screenshots/Logs
See https://github.com/sebastianbergmann/php-code-coverage/actions/runs/4447135572/jobs/7808303371#step:4:35
Additional context
Perhaps related to #700.
Are you willing to submit a PR?
n/a
The text was updated successfully, but these errors were encountered: