Skip to content

Commit 6f32aa7

Browse files
GURUAKASH-KULUpellared
authored andcommitted
Add make run target to Makefile
1 parent 4daeb64 commit 6f32aa7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ clean: ## remove files created during build pipeline
2525
rm -f '"$(shell go env GOCACHE)/../golangci-lint"'
2626
go clean -i -cache -testcache -modcache -fuzzcache -x
2727

28+
.PHONY: run
29+
run: ## Run the Go application
30+
go run main.go
31+
2832
.PHONY: mod
2933
mod: ## go mod tidy
3034
go mod tidy

0 commit comments

Comments
 (0)