mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 14:30:54 +00:00
11 lines
253 B
Makefile
11 lines
253 B
Makefile
|
help:
|
||
|
@echo "Available targets:"
|
||
|
@echo "- test: run tests"
|
||
|
@echo "- installdependencies: installs dependencies declared in dependencies.txt"
|
||
|
|
||
|
installdependencies:
|
||
|
cat dependencies.txt | xargs go get
|
||
|
|
||
|
test: installdependencies
|
||
|
go test -i && go test
|