Skip to content

Added tag 1.14.0 for changeset 55bb38e94391 #7

Added tag 1.14.0 for changeset 55bb38e94391

Added tag 1.14.0 for changeset 55bb38e94391 #7

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ["7.4", "8.0", "8.1", "8.2"]
steps:
- uses: actions/checkout@v3
- name: Install build dependencies
run: sudo apt-get install -y build-essential flex bison re2c
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Compile
run: phpize && ./configure && make
- name: Test
run: make test