Skip to content

Commit

Permalink
Restore Makefile build and test
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandofcampos committed Aug 19, 2024
1 parent f69e734 commit b5f8169
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions x/emissions/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@

DOCKER := $(shell which docker)

#################
### Build ###
#################

build:
@echo "--> Check the code compiles"
@go build ./...

test:
@echo "--> Running tests"
go test -v ./...

.PHONY: build test

##################
### Protobuf ###
##################
Expand Down
14 changes: 14 additions & 0 deletions x/mint/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@

DOCKER := $(shell which docker)

#################
### Build ###
#################

build:
@echo "--> Check the code compiles"
@go build ./...

test:
@echo "--> Running tests"
go test -v ./...

.PHONY: build test

##################
### Protobuf ###
##################
Expand Down

0 comments on commit b5f8169

Please sign in to comment.