shortnr/Makefile
mitchell b699e661e2 Setup Dialyxir and Credo code analyzers:
- Refactor codebase according to analyzers
2019-12-30 21:50:39 -05:00

21 lines
249 B
Makefile

.PHONY: all build clean install lint start test
build: install lint test clean
docker build -t shortnr:latest .
clean:
mix clean
install:
mix deps.get
lint:
mix dialyzer
mix credo --strict
start:
iex -S mix run --no-halt
test:
mix test