Skip to content

Document (most of) the ClassGenerator #62

Document (most of) the ClassGenerator

Document (most of) the ClassGenerator #62

Workflow file for this run

name: Run Tests
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '8.1', '8.2', '8.3' ]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 10
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, intl, curl, soap, libxml, dom, simplexml
ini-values: post_max_size=256M, max_execution_time=180
coverage: xdebug
- name: Install Composer dependencies
run: composer install --no-progress
- name: Codestyle Check
run: composer cs
- name: PHPUnit
run: ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
env:
XDEBUG_MODE: coverage
- name: Upload Scrutinizer coverage
uses: sudo-bot/action-scrutinizer@latest
with:
cli-args: "--format=php-clover build/logs/clover.xml"