Skip to content

Rewrite the remaining parts of the sedlex lexer in re2c #49

Rewrite the remaining parts of the sedlex lexer in re2c

Rewrite the remaining parts of the sedlex lexer in re2c #49

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
main:
name: 'Test / OCaml v${{ matrix.ocaml }} / ${{ matrix.os }}'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ocaml:
- 5.2.x
- 5.1.x
- 4.14.x
steps:
- uses: actions/checkout@v4
- uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml }}
- name: Install dependencies
run: opam install . --deps-only --with-test
- name: Build
run: opam exec -- dune build @install
- name: Test
run: opam exec -- dune runtest