Skip to content

Commit 4b0e672

Browse files
authored
added makefile (#11)
1 parent 660f42d commit 4b0e672

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.PHONY: build test
2+
#
3+
build:
4+
echo "start build"
5+
go build .
6+
echo "end build"
7+
#
8+
test:
9+
10+
echo "start build"
11+
go build .
12+
go test -v ./...
13+
echo "end build"
14+
#

0 commit comments

Comments
 (0)