16 lines
158 B
Makefile
16 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
|
||
|
|