feat(ConsoleReporter): split summary into two lines with tested perce… #25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Quality | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP 8.4 | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| coverage: none | |
| - name: Install dependencies | |
| run: composer install --no-interaction --prefer-dist | |
| - name: Rector (refactoring) | |
| run: composer test:rector | |
| - name: Pint (code style) | |
| run: composer test:pint | |
| - name: PHPStan (static analysis) | |
| run: composer test:phpstan | |
| - name: Pest (tests) | |
| run: composer test:unit | |
| - name: DocTest (documentation examples) | |
| run: composer test:doc |