Skip to content

Commit

Permalink
CI fixes (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzaldysanchez authored Nov 16, 2023
1 parent 4cc5c9c commit 361a942
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ build:

.PHONY: test
test:
go test /...
go test ./...

.PHONY: test-ci
test-ci:
go test /... -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:
golangci-lint run $(addsuffix /...)
golangci-lint run ./...

.PHONY: tidy
tidy:
Expand Down

0 comments on commit 361a942

Please sign in to comment.