Skip to content

add Lit.apply_sign

add Lit.apply_sign #43

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
run:
name: Build
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
#- windows-latest
ocaml-compiler:
- '4.03.x'
- '4.14.x'
- '5.0.x'
exclude:
- os: macos-latest
ocaml-compiler: '4.03.x'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam pin -n .
- run: opam depext -yt minisat
- run: opam install -t . --deps-only
- run: opam exec -- dune build
- run: opam exec -- dune runtest
if: ${{ matrix.os == 'ubuntu-latest'}}