Skip to content

Commit

Permalink
chore: fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
robcxyz committed Sep 19, 2024
1 parent 71de015 commit 7fa0835
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
test: up-dbs test-unit

up-dbs: ## Bring up the DBs
docker-compose -f docker-compose.db.yml up -d
docker compose -f docker-compose.db.yml up -d

down-dbs: ## Take down the DBs
docker-compose -f docker-compose.db.yml down
docker compose -f docker-compose.db.yml down

test-unit: ## Run unit tests - Need DB compose up
cd src && go test ./... -v --tags=unit
Expand Down

0 comments on commit 7fa0835

Please sign in to comment.