Skip to content

lib: fix verbatim in text object not block #22

lib: fix verbatim in text object not block

lib: fix verbatim in text object not block #22

Workflow file for this run

name: Build and Test
on:
- push
- pull_request
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
# - windows-latest
ocaml-version:
- 4.14
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use OCaml ${{ matrix.ocaml-version }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-version }}
dune-cache: true
opam-depext-flags: "--with-test"
allow-prerelease-opam: true
- run: opam install . --deps-only --with-test
- name: build project
run: opam exec -- dune build
- name: run test
run: opam exec -- dune runtest