Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using
dune build @check
to build the project
The current target `all` of the `Makefile` is a bit complicated as we want to build only the codebase without running tests when we type `make`. After looking for a better solution, I found this issue on the `dune` GitHub (ocaml/dune#7203) explaining we have to use `dune build @check` and `dune build` builds everything by design. I modify the `Makefile` accordingly.