Skip to content

Chore: CI CodeCov Pipeline Check #1297

Chore: CI CodeCov Pipeline Check

Chore: CI CodeCov Pipeline Check #1297

Workflow file for this run

---
name: build
on: [ push, pull_request ]
permissions:
actions: write
checks: write
contents: read
deployments: read
issues: write
discussions: write
packages: read
pages: write
pull-requests: write
security-events: write
statuses: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.1', '8.2', '8.3', '8.4']
name: PHP ${{ matrix.php }} Test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, mbstring, xdebug
coverage: xdebug
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Get Composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer update --prefer-dist --no-interaction
- name: PHPUnit tests with coverage
run: vendor/bin/phpunit
- name: Run PHPStan
run: ./vendor/bin/phpstan
phpunit-coverage-check:
name: PHPUnit Coverage Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install PHP 8.4
uses: shivammathur/setup-php@master
with:
php-version: 8.4
extensions: mbstring
coverage: xdebug, pcov
tools: composer:v2
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: ./vendor/bin/phpunit --coverage-clover clover.xml
- name: Coverage Check
uses: docker://ghcr.io/ericsizemore/phpunit-coverage-check-action
with:
clover_file: 'clover.xml'
threshold: 80