25 lines
380 B
Makefile
25 lines
380 B
Makefile
default:
|
|
@just --list
|
|
|
|
build :
|
|
dune build
|
|
|
|
test :
|
|
dune build
|
|
dune test
|
|
|
|
format :
|
|
dune fmt; dune promote
|
|
|
|
format-check fmt-ck :
|
|
dune fmt --preview
|
|
|
|
cover :
|
|
find . -name '*.coverage' -exec rm -v '{}' ';'
|
|
dune build
|
|
dune runtest --instrument-with bisect_ppx --force
|
|
bisect-ppx-report html
|
|
bisect-ppx-report summary
|
|
|
|
clean :
|
|
dune clean
|