Skip to content

Commit

Permalink
Fixes make errors
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzaldysanchez committed Nov 16, 2023
1 parent 41031de commit 89aa0ed
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 @@ -7,11 +7,11 @@ build:

.PHONY: test
test:
go test $(addsuffix /...,$(addprefix ./))
go test /...

.PHONY: test-ci
test-ci:
go test $(addsuffix /...,$(addprefix ./)) -covermode=atomic -coverpkg=./... -coverprofile=./coverage.txt -json | tee output.txt
go test /... -covermode=atomic -coverpkg=./... -coverprofile=./coverage.txt -json | tee output.txt

.PHONY: lint
lint:
Expand Down

0 comments on commit 89aa0ed

Please sign in to comment.