Skip to content

Commit

Permalink
fix: makefile (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fazt01 committed Jul 16, 2024
1 parent 5750247 commit 783d21e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
GO = $(shell which go)

.PHONY:
test \
fmt \
vet

.PHONY: fmt
fmt:
$(GO) fmt ./...

.PHONY: vet
vet:
$(GO) vet ./...

.PHONY: test
test:
set -eo pipefail
$(GO) test ./... -cover

0 comments on commit 783d21e

Please sign in to comment.