Skip to content

Commit

Permalink
test(makefile): add the required make commands to run the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danvergara committed Apr 4, 2021
1 parent 03132be commit 73f2c6e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.PHONY: test
## test: Runs the tests
test:
go test -v -race ./...

.PHONY: test-all
## test-all: Runs the integration testing bash script with different database docker image versions
test-all:
@./scripts/test_all.sh

.PHONY: help
## help: Prints this help message
help:
@echo "Usage:"
@sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /'

0 comments on commit 73f2c6e

Please sign in to comment.