Skip to content

fix some potential memleaks and use the newer caml_stat_strdup #12

fix some potential memleaks and use the newer caml_stat_strdup

fix some potential memleaks and use the newer caml_stat_strdup #12

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
run:
name: build
strategy:
matrix:
os:
- ubuntu-latest
ocaml-compiler:
- 4.03.x
- 4.14.x
- 5.1.x
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
allow-prerelease-opam: true
- run: opam pin -n .
- run: opam depext -yt linenoise
- run: opam install -t . --deps-only
- run: opam exec -- dune build --ignore-promoted-rules
- run: opam exec -- dune runtest --ignore-promoted-rules
if: ${{ matrix.os == 'ubuntu-latest' && matrix.ocaml-compiler == '4.14.x' }}