Skip to content

feat: modify extension internals #19

feat: modify extension internals

feat: modify extension internals #19

Workflow file for this run

name: ext-mrloop CI
on:
push:
branches:
- develop
jobs:
build:
runs-on: 'ubuntu-latest'
strategy:
fail-fast: false
matrix:
php: ['8.1', '8.2', '8.3', '8.4']
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php }}
extensions: posix, pcntl
env:
phpts: ts
- name: Run tests
run: |
git clone https://github.com/markreedz/mrloop.git mrloop && \
git clone https://github.com/axboe/liburing.git liburing && cd liburing && make && sudo make install && \
cd ../ && phpize && ./configure --with-mrloop="$(pwd)/mrloop" && \
make && make test