mirror of
https://github.com/valitydev/psql-migration.git
synced 2024-11-06 01:05:18 +00:00
15 lines
136 B
Makefile
15 lines
136 B
Makefile
.PHONY: compile
|
|
|
|
REBAR=./rebar3
|
|
|
|
compile:
|
|
$(REBAR) compile
|
|
|
|
typecheck:
|
|
$(REBAR) do dialyzer,xref
|
|
|
|
clean:
|
|
$(REBAR) clean
|
|
|
|
ci: compile
|