Skip to content
This repository was archived by the owner on Mar 1, 2026. It is now read-only.

Use Markdown syntax for Codecov badge in README #15

Use Markdown syntax for Codecov badge in README

Use Markdown syntax for Codecov badge in README #15

Workflow file for this run

name: CI
on:
push:
pull_request:
env:
COVERAGE_PHP_VERSION: "8.3"
jobs:
phpunit:
name: PHPUnit
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
use-extensions:
- "true"
- "false"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: xdebug
- name: Install composer dependencies
uses: ramsey/composer-install@v3
- name: Run PHPUnit
run: vendor/bin/phpunit
env:
USE_PHP_EXTENSIONS: ${{ matrix.use-extensions }}
if: ${{ matrix.php-version != env.COVERAGE_PHP_VERSION }}
- name: Run PHPUnit with coverage
run: vendor/bin/phpunit --coverage-clover clover.xml
env:
USE_PHP_EXTENSIONS: ${{ matrix.use-extensions }}
if: ${{ matrix.php-version == env.COVERAGE_PHP_VERSION }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
if: ${{ matrix.php-version == env.COVERAGE_PHP_VERSION }}