Skip to content

ISSUE-322: Fix bug where we override streamsAreImported during each i… #497

ISSUE-322: Fix bug where we override streamsAreImported during each i…

ISSUE-322: Fix bug where we override streamsAreImported during each i… #497

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
jobs:
ci:
name: Run CI
runs-on: ubuntu-latest
env:
PHP_CS_FIXER_IGNORE_ENV: true
steps:
# https://github.com/marketplace/actions/setup-php-action
- name: Setup PHP 8.4
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
coverage: xdebug
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: composer install --prefer-dist
- name: Run PHPStan
run: vendor/bin/phpstan analyse
- name: Run PHPcs fixer dry-run
run: vendor/bin/php-cs-fixer fix --dry-run --stop-on-violation --config=.php-cs-fixer.dist.php
- name: Run test suite
run: vendor/bin/phpunit --fail-on-incomplete --log-junit junit.xml --coverage-clover=clover.xml -d --min-coverage="min-coverage-rules.php"