Skip to content

Cleanup + Bump PHPUnit (#96) #571

Cleanup + Bump PHPUnit (#96)

Cleanup + Bump PHPUnit (#96) #571

Workflow file for this run

on:
pull_request:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'CHANGELOG.md'
- '.gitignore'
- '.gitattributes'
- 'infection.json.dist'
- 'phpunit.xml.dist'
push:
branches: ['master']
paths-ignore:
- 'docs/**'
- 'README.md'
- 'CHANGELOG.md'
- '.gitignore'
- '.gitattributes'
- 'infection.json.dist'
- 'phpunit.xml.dist'
name: static analysis
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
psalm:
name: PHP ${{ matrix.php }}-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 2
matrix:
os:
- ubuntu-latest
php:
- 8.1
- 8.2
- 8.3
- 8.4
- 8.5
steps:
- name: Checkout.
uses: actions/checkout@v3
- name: Install PHP with extensions.
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2, cs2pr
coverage: pcov
- name: Update composer.
run: composer self-update
- uses: "ramsey/composer-install@v3"
with:
composer-options: "--prefer-dist --no-interaction --no-progress --ansi"
- name: Install dependencies with composer.
run: composer require yiisoft/db-sqlite --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
- name: Static analysis,
run: vendor/bin/psalm --shepherd --stats --output-format=checkstyle --php-version=${{ matrix.php }} | cs2pr --graceful-warnings --colorize