Skip to content

feat: initial commit #1

feat: initial commit

feat: initial commit #1

Workflow file for this run

name: ext-picohttpparser 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 }}
- name: Run tests
run: |
git clone https://github.com/h2o/picohttpparser.git && \
phpize && ./configure --with-picohttpparser="$(pwd)/picohttpparser" && \
make && make test