Skip to content

Remove scanner state that prevents parsing the text after class, `f… #6

Remove scanner state that prevents parsing the text after class, `f…

Remove scanner state that prevents parsing the text after class, `f… #6

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