Skip to content

Change to stable version of ReactPHP EventLoop #11

Change to stable version of ReactPHP EventLoop

Change to stable version of ReactPHP EventLoop #11

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [8.1, 8.2]
steps:
# Check out the repository under $GITHUB_WORKSPACE, so this job can access it.
- uses: actions/checkout@v2
- name: Use PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use PHP 8.2
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
- name: Install Composer dependencies
run: composer install
- name: Run PHPStan
run: vendor/bin/phpstan analyse -c phpstan.neon.dist