Skip to content

fix: redirect ServeCommand output to STDERR for stdio transport #59

fix: redirect ServeCommand output to STDERR for stdio transport

fix: redirect ServeCommand output to STDERR for stdio transport #59

Workflow file for this run

name: Tests
on: ['push', 'pull_request']
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3, 8.4]
max-parallel: 4
name: Tests PHP${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install Composer dependencies
run: composer update --no-interaction --prefer-dist
- name: Run Tests
run: composer run test