-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
31 lines (22 loc) · 1022 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/make -f
###############################################################################
### Build ###
###############################################################################
install: go.sum
@echo "Installing tester binary..."
@go install ./cmd/tester
.PHONY: install
###############################################################################
### Tests & Simulation ###
###############################################################################
test: test-unit
test-unit:
@go test -mod=readonly ./...
.PHONY: test test-unit
###############################################################################
### Localnet ###
###############################################################################
localnet:
@echo "Bootstraping a single local testnet..."
./scripts/localnet.sh
.PHONY: localnet