Skip to content

Commit

Permalink
Makefile added
Browse files Browse the repository at this point in the history
  • Loading branch information
timurIsaevIY committed Sep 26, 2024
1 parent 47974a0 commit 71660cc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
build_:
go build -o ./.bin cmd/main/main.go

run: build_
./.bin

.PHONY: lint
lint:
golangci-lint run --config=.golangci.yaml

test:
go test -race ./...

0 comments on commit 71660cc

Please sign in to comment.