8000 fix: in Syntactic.non_proper make all cases uniform · Drup/dowsing@90592b5 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: in Syntactic.non_proper make all cases uniform #353

fix: in Syntactic.non_proper make all cases uniform

fix: in Syntactic.non_proper make all cases uniform #353

Workflow file for this run

name: Build
on:
- pull_request
- push
jobs:
build-native:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
ocaml-compiler:
- '5.2'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build
- run: opam exec -- dune runtest
0