Skip to content

Commit

Permalink
chore: add some commands to makefile (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
i-sevostyanov authored Jun 13, 2024
1 parent 4ad6799 commit d091573
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.PHONY: lint test coverage generate
.PHONY: run lint test coverage coverage-report generate build

run:
@go run cmd/shell/main.go

lint:
@golangci-lint run
Expand All @@ -14,3 +17,6 @@ coverage-report:

generate:
@go generate ./...

build:
@go build -trimpath -ldflags "-s -w" -o ./bin/shell cmd/shell/main.go

0 comments on commit d091573

Please sign in to comment.