8c35235c34
We are going to use the Makefile to save useful commands without creating too many shell scripts in the top dir.
12 lines
106 B
Makefile
12 lines
106 B
Makefile
.phony: build
|
|
build:
|
|
./build.bash
|
|
|
|
.phony: test
|
|
test:
|
|
./test.bash
|
|
|
|
.phony: format
|
|
format:
|
|
go fmt ./...
|