15 lines
158 B
Makefile
15 lines
158 B
Makefile
all: build
|
|
|
|
build:
|
|
shards build --error-trace
|
|
|
|
prepare:
|
|
shards install
|
|
|
|
test:
|
|
crystal spec --verbose --error-trace
|
|
spec: test
|
|
|
|
fmt:
|
|
crystal tool format
|
|
|