Skip to content

Add an option that allows you to hide all files where code coverage is full in the code coverage output #645

Add an option that allows you to hide all files where code coverage is full in the code coverage output

Add an option that allows you to hide all files where code coverage is full in the code coverage output #645

Workflow file for this run

name: Static Analysis
on: ['push', 'pull_request']
jobs:
phpstan:
runs-on: ubuntu-latest
name: Static
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer
coverage: none
- name: Install Dependencies
run: composer update --no-interaction --prefer-dist --no-progress --ansi
- name: Run Style Tests
run: composer test:lint
- name: Run Types Tests
run: composer test:types